Files
brick-framework/GameCore/Events/GameStatusChangedEvent.cs

9 lines
219 B
C#

using GameCore.Events.Interfaces;
using GameCore.State;
namespace GameCore.Events;
public readonly struct GameStatusChangedEvent(GameStatus newStatus) : IEvent
{
public readonly GameStatus NewStatus = newStatus;
}