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

9 lines
246 B
C#

using GameCore.Events.Interfaces;
namespace GameCore.Events;
public readonly struct ButtonPressedEvent(string channelId, bool newState) : IEvent
{
public readonly string ChannelId = channelId;
public readonly bool NewState = newState;
}