18 lines
314 B
C#
18 lines
314 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using OpenRa.FileFormats;
|
|
using BluntDirectX.Direct3D;
|
|
using System.Drawing;
|
|
|
|
namespace OpenRa.Game
|
|
{
|
|
class Refinery : Building
|
|
{
|
|
public Refinery(int2 location, int palette)
|
|
: base( "proc", location, palette )
|
|
{
|
|
}
|
|
}
|
|
}
|