17 lines
254 B
C#
17 lines
254 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace OpenRa.Game
|
|
{
|
|
class MoveOrder
|
|
{
|
|
public readonly float2 Destination;
|
|
|
|
public MoveOrder(float2 destination)
|
|
{
|
|
this.Destination = destination;
|
|
}
|
|
}
|
|
}
|