server-master/srcs/WingsAPI.Game/TimeSpaces/Events/TimeSpaceStartClockEvent.cs
2026-02-10 18:21:30 +01:00

15 lines
No EOL
391 B
C#

using PhoenixLib.Events;
namespace WingsEmu.Game.TimeSpaces.Events;
public class TimeSpaceStartClockEvent : IAsyncEvent
{
public TimeSpaceStartClockEvent(TimeSpaceParty timeSpaceParty, bool isVisible)
{
TimeSpaceParty = timeSpaceParty;
IsVisible = isVisible;
}
public TimeSpaceParty TimeSpaceParty { get; set; }
public bool IsVisible { get; set; }
}