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

16 lines
No EOL
376 B
C#

using System;
using PhoenixLib.Events;
namespace WingsEmu.Game.Ship.Event;
public class ShipProcessEvent : IAsyncEvent
{
public ShipProcessEvent(ShipInstance shipInstance, DateTime currentTime)
{
ShipInstance = shipInstance;
CurrentTime = currentTime;
}
public ShipInstance ShipInstance { get; }
public DateTime CurrentTime { get; }
}