17 lines
342 B
C#
17 lines
342 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", () => animation.PlayRepeating("build"));
|
|
}
|
|
}
|
|
}
|