server-master/srcs/WingsAPI.Game/GameEvent/Event/GameEventInstanceProcessEvent.cs
2026-02-10 18:21:30 +01:00

11 lines
No EOL
280 B
C#

using System;
using PhoenixLib.Events;
namespace WingsEmu.Game.GameEvent.Event;
public class GameEventInstanceProcessEvent : IAsyncEvent
{
public GameEventInstanceProcessEvent(DateTime currentTime) => CurrentTime = currentTime;
public DateTime CurrentTime { get; }
}