20 lines
340 B
C#
20 lines
340 B
C#
using System;
|
|
|
|
namespace Decal.Adapter.Wrappers;
|
|
|
|
public class SpellbookEventArgs : EventArgs
|
|
{
|
|
private AddRemoveEventType myType;
|
|
|
|
private int mySpell;
|
|
|
|
public AddRemoveEventType Type => myType;
|
|
|
|
public int Spell => mySpell;
|
|
|
|
internal SpellbookEventArgs(AddRemoveEventType type, int spell)
|
|
{
|
|
myType = type;
|
|
mySpell = spell;
|
|
}
|
|
}
|