12 lines
207 B
C#
12 lines
207 B
C#
|
|
using GatherAndDefend.Events;
|
|
|
|
public struct PopulationChangedEventArgs
|
|
{
|
|
public float Pop;
|
|
public float MaxPop;
|
|
}
|
|
|
|
public class PopulationChangedEvent : EventBase<PopulationChangedEventArgs>
|
|
{
|
|
} |