this is not just ShowMuzzles anymore

This commit is contained in:
Matthias Mailänder
2014-01-03 13:30:12 +01:00
parent 4d99f9ce53
commit a6c5b80731
5 changed files with 10 additions and 10 deletions

View File

@@ -19,7 +19,7 @@ namespace OpenRA.Traits
public bool PathDebug = false;
public bool UnlimitedPower;
public bool BuildAnywhere;
public bool ShowMuzzles;
public bool ShowCombatGeometry;
public bool ShowDebugGeometry;
public object Create (ActorInitializer init) { return new DeveloperMode(this); }
@@ -37,7 +37,7 @@ namespace OpenRA.Traits
[Sync] public bool BuildAnywhere;
// Client size only
public bool ShowMuzzles;
public bool ShowCombatGeometry;
public bool ShowDebugGeometry;
public DeveloperMode(DeveloperModeInfo info)
@@ -49,7 +49,7 @@ namespace OpenRA.Traits
PathDebug = info.PathDebug;
UnlimitedPower = info.UnlimitedPower;
BuildAnywhere = info.BuildAnywhere;
ShowMuzzles = info.ShowMuzzles;
ShowCombatGeometry = info.ShowCombatGeometry;
ShowDebugGeometry = info.ShowDebugGeometry;
}