MapFormat = 1 and editor support

This commit is contained in:
Paul Chote
2010-05-24 20:29:57 +12:00
parent 78455a3dce
commit 2dfa4d9db7
4 changed files with 72 additions and 29 deletions

View File

@@ -32,5 +32,14 @@ namespace OpenRA.FileFormats
{
FieldLoader.Load(this, my);
}
public PlayerReference(string name, string palette, string race, bool ownsworld, bool noncombatant)
{
Name = name;
Palette = palette;
Race = race;
OwnsWorld = ownsworld;
NonCombatant = noncombatant;
}
}
}