12 lines
248 B
C#
12 lines
248 B
C#
namespace DanieleMarotta.RiversongCodeShowcase
|
|
{
|
|
public struct PopulationChangedSignal
|
|
{
|
|
public int Population;
|
|
|
|
public PopulationChangedSignal(int population)
|
|
{
|
|
Population = population;
|
|
}
|
|
}
|
|
} |