Production..

This commit is contained in:
Chris Forbes
2010-01-10 13:40:49 +13:00
parent f4d19aa78c
commit c9d758c834
3 changed files with 15 additions and 0 deletions

View File

@@ -6,6 +6,11 @@ using OpenRa.Game.GameRules;
namespace OpenRa.Game.Traits
{
class ProductionSurroundInfo : ITraitInfo
{
public object Create(Actor self) { return new ProductionSurround(self); }
}
class ProductionSurround : Production
{
public ProductionSurround(Actor self) : base(self) { }