gamemode spawning

This commit is contained in:
2022-05-05 20:10:43 +03:00
parent fe443b9f50
commit c4f5d4d4d2
9 changed files with 101 additions and 45 deletions

View File

@@ -22,15 +22,12 @@ namespace Game
public override void Initialize()
{
base.Initialize();
Debug.Log("ConsolePlugin Initialize");
Console.Init();
}
public override void Deinitialize()
{
base.Deinitialize();
Debug.Log("ConsolePlugin Deinitialize");
}
}
@@ -43,13 +40,13 @@ namespace Game
public override void Initialize()
{
Debug.Log("ConsoleEditorPlugin Initialize");
base.Initialize();
Console.Init();
}
public override void Deinitialize()
{
Debug.Log("ConsoleEditorPlugin Deinitialize");
base.Deinitialize();
}
}
#endif