git-svn-id: svn://svn.ijw.co.nz/svn/OpenRa@1296 993157c7-ee19-0410-b2c4-bb4e9862e678

This commit is contained in:
(no author)
2007-07-17 12:52:43 +00:00
parent 6bb26d95e1
commit 5bb5fc32fe
7 changed files with 55 additions and 43 deletions

View File

@@ -7,20 +7,11 @@ using System.Drawing;
namespace OpenRa.Game
{
class Refinery : Actor
class Refinery : Building
{
Animation a = new Animation( "proc" );
public Refinery(float2 location, int palette)
public Refinery(int2 location, int palette)
: base( "proc", location, palette )
{
a.PlayToEnd( "idle" );
this.renderLocation = location;
this.palette = palette;
}
public override Sprite[] CurrentImages
{
get { return a.Images; }
}
}
}