Reviewed-on: #5 Reviewed-by: Ader_Alisma <ader.alisma.1@ens.etsmtl.ca> Co-authored-by: craftwill <william-gin1@hotmail.com> Co-committed-by: craftwill <william-gin1@hotmail.com>
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>
|
|
{
|
|
} |