Files
OpenRA/OpenRa.Game/ConstructionYard.cs

17 lines
354 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace OpenRa.Game
{
class ConstructionYard : Building
{
public ConstructionYard( int2 location, Player owner, Game game )
: base( "fact", location, owner, game )
{
animation.PlayThen( "make", delegate { animation.PlayRepeating( "build" ); } );
}
}
}