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

20 lines
353 B
C#

using System;
namespace Decal.Adapter.Wrappers;
public class ChangeVitalEventArgs : EventArgs
{
private CharFilterVitalType myType;
private int myAmount;
public CharFilterVitalType Type => myType;
public int Amount => myAmount;
internal ChangeVitalEventArgs(CharFilterVitalType type, int amount)
{
myType = type;
myAmount = amount;
}
}