SelectableInfo

This commit is contained in:
Chris Forbes
2010-01-10 12:45:23 +13:00
parent 7a8ab81c91
commit 68fcd29816

View File

@@ -5,6 +5,15 @@ 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 ) { }