Files
OpenRA/OpenRa.Game/Actor.cs
chrisf cb54dbf81b hax!
git-svn-id: svn://svn.ijw.co.nz/svn/OpenRa@1191 993157c7-ee19-0410-b2c4-bb4e9862e678
2007-07-13 09:36:58 +00:00

18 lines
357 B
C#

using System;
using System.Collections.Generic;
using System.Text;
using System.Drawing;
using OpenRa.FileFormats;
using BluntDirectX.Direct3D;
using System.Windows.Forms;
namespace OpenRa.Game
{
abstract class Actor
{
public PointF location;
public int palette;
public abstract SheetRectangle<Sheet>[] CurrentImages { get; }
}
}