Helicopter..

This commit is contained in:
Chris Forbes
2010-01-10 13:50:46 +13:00
parent 1c1b0be8bb
commit aeda044f83
5 changed files with 21 additions and 0 deletions

View File

@@ -2,6 +2,11 @@
namespace OpenRa.Game.Traits
{
class InvisibleToOthersInfo : ITraitInfo
{
public object Create(Actor self) { return new InvisibleToOthers(self); }
}
class InvisibleToOthers : IRenderModifier
{
public InvisibleToOthers(Actor self) { }