14 lines
355 B
C#
14 lines
355 B
C#
using VOID.Generic.Dict;
|
|
using VOID.Generic.Objects.Abstract.Events;
|
|
|
|
namespace VOID.Generic.Objects.Unit.Events
|
|
{
|
|
public class UnitResourceChangeEvent : AbstractEvent
|
|
{
|
|
public UnitObject unit;
|
|
public UnitResourceType type;
|
|
public float oldValue;
|
|
public float newValue;
|
|
public float changedValue;
|
|
}
|
|
} |