MosswartMassacre/Unused/Decal.Adapter.Wrappers/SpellbookEventArgs.cs
2025-06-09 02:03:11 +02:00

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;
}
}