ProvidesRadar..

This commit is contained in:
Chris Forbes
2010-01-10 13:37:21 +13:00
parent 1803dad53c
commit f4d19aa78c
8 changed files with 36 additions and 3 deletions

View File

@@ -5,6 +5,11 @@ using System.Text;
namespace OpenRa.Game.Traits
{
class ProvidesRadarInfo : ITraitInfo
{
public object Create(Actor self) { return new ProvidesRadar(self); }
}
class ProvidesRadar
{
Actor self;