Files
OpenRA/OpenRA.Editor/ActorTemplate.cs
2010-05-10 17:49:11 +12:00

18 lines
309 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Drawing;
using OpenRA.GameRules;
using System.Windows.Forms;
namespace OpenRA.Editor
{
class ActorTemplate
{
public Bitmap Bitmap;
public ActorInfo Info;
public bool Centered;
}
}