gather-and-defend/Assets/Scripts/Events/PopulationChangedEvent.cs

12 lines
207 B
C#

using GatherAndDefend.Events;
public struct PopulationChangedEventArgs
{
public float Pop;
public float MaxPop;
}
public class PopulationChangedEvent : EventBase<PopulationChangedEventArgs>
{
}