misc UI stuff, gamesession additions, limbs don't have individual health anymore, background music

This commit is contained in:
Regalis
2015-06-09 18:18:34 +03:00
parent d3896383fd
commit d7fde606e9
50 changed files with 595 additions and 282 deletions

View File

@@ -6,9 +6,13 @@
private bool prevStarted;
public ScriptedTask(TaskManager taskManager, ScriptedEvent scriptedEvent)
: base(taskManager, scriptedEvent.Difficulty, scriptedEvent.Name)
public ScriptedTask(ScriptedEvent scriptedEvent)
: base(scriptedEvent.Difficulty, scriptedEvent.Name)
{
if (taskManager == null) return;
this.musicType = scriptedEvent.MusicType;
this.scriptedEvent = scriptedEvent;
scriptedEvent.Init();
}