17 lines
308 B
C#
17 lines
308 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
|
|
{
|
|
class Actor
|
|
{
|
|
public PointF location;
|
|
public SheetRectangle<Sheet>[] currentImages;
|
|
}
|
|
}
|