13 lines
221 B
C#
13 lines
221 B
C#
using System;
|
|
|
|
namespace Game;
|
|
|
|
public static class EventBus
|
|
{
|
|
public static Action<Company.CompanyStats> CompanyChanged;
|
|
|
|
public static Action<Ceo.CeoStats> CeoChanged;
|
|
|
|
public static Action DayStarted;
|
|
}
|