idle-starship/scripts/TickOrder.cs
2025-09-12 08:34:06 -04:00

11 lines
239 B
C#

public partial class TickOrder : Order
{
public long Ticks { get; set; }
public TickOrder(OrderType type, long ticks)
{
this.Category = OrderCategory.TICK;
this.Type = type;
this.Ticks = ticks;
}
}