Files
OpenRA/OpenRa.Game/Traits/Selectable.cs
Chris Forbes 68fcd29816 SelectableInfo
2010-01-10 12:45:23 +13:00

22 lines
442 B
C#
Executable File

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace OpenRa.Game.Traits
{
class SelectableInfo : ITraitInfo
{
public readonly int Priority = 10;
public readonly int[] Bounds = null;
public readonly string Voice = "GenericVoice";
public object Create(Actor self) { return new Selectable(self); }
}
class Selectable
{
public Selectable( Actor self ) { }
}
}