17 lines
365 B
C#
17 lines
365 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using BluntDirectX.Direct3D;
|
|
|
|
namespace OpenRa.Game
|
|
{
|
|
class ConstructionYard : Building
|
|
{
|
|
public ConstructionYard( int2 location, Player owner )
|
|
: base( "fact", location, owner )
|
|
{
|
|
animation.PlayThen( "make", delegate { animation.PlayRepeating( "build" ); } );
|
|
}
|
|
}
|
|
}
|