actortemplate hax

This commit is contained in:
Chris Forbes
2010-05-10 17:49:11 +12:00
parent 22afe4f80b
commit 0673fc23bf
3 changed files with 24 additions and 6 deletions

View File

@@ -0,0 +1,17 @@
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;
}
}