Files
You-Are-A-CEO/EventBus.cs
2026-08-12 13:31:11 +02:00

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;
}