16 lines
No EOL
376 B
C#
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; }
|
|
} |