Add initial game code
This commit is contained in:
parent
f80a60e208
commit
1383997ebf
55 changed files with 1355 additions and 0 deletions
11
scripts/TickOrder.cs
Normal file
11
scripts/TickOrder.cs
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
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;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue