everything StoresOreInfo onward

This commit is contained in:
Chris Forbes
2010-01-10 13:28:46 +13:00
parent fee63593d7
commit 040d251350
8 changed files with 34 additions and 29 deletions

View File

@@ -6,6 +6,11 @@ using OpenRa.Game.Graphics;
namespace OpenRa.Game.Traits
{
class WithShadowInfo : ITraitInfo
{
public object Create(Actor self) { return new WithShadow(self); }
}
class WithShadow : IRenderModifier
{
public WithShadow(Actor self) {}