20 lines
353 B
C#
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;
|
|
}
|
|
}
|