15 lines
209 B
C#
Executable File
15 lines
209 B
C#
Executable File
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace OpenRa.Game.Traits
|
|
{
|
|
class Unit
|
|
{
|
|
public int Facing;
|
|
|
|
public Unit( Actor self ) { }
|
|
}
|
|
}
|