19 lines
384 B
C#
19 lines
384 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 float2 location;
|
|
public int palette;
|
|
public abstract Sprite[] CurrentImages { get; }
|
|
public abstract void Tick( double t );
|
|
}
|
|
}
|