Separate folder for game modes

This commit is contained in:
Regalis
2015-08-08 14:19:47 +03:00
parent 0937c30f15
commit f248ef528b
12 changed files with 221 additions and 190 deletions

View File

@@ -51,7 +51,7 @@ namespace Subsurface
get
{
SinglePlayerMode mode = (gameMode as SinglePlayerMode);
return (mode == null) ? null : mode.map;
return (mode == null) ? null : mode.Map;
}
}
@@ -151,7 +151,7 @@ namespace Subsurface
{
SinglePlayerMode singlePlayerMode = gameMode as SinglePlayerMode;
if (singlePlayerMode == null) return;
singlePlayerMode.crewManager.KillCharacter(character);
singlePlayerMode.CrewManager.KillCharacter(character);
}
public bool LoadPrevious(GUIButton button, object obj)