Implement most of the callbacks, few other changes too

This commit is contained in:
CWX
2025-01-11 17:14:56 +00:00
parent ba78a15613
commit 8f22759ec5
44 changed files with 1601 additions and 494 deletions
+9 -4
View File
@@ -48,7 +48,7 @@ public class GameController
/// <param name="sessionId"></param>
/// <param name="requestData"></param>
/// <returns></returns>
public object GetGameMode( // TODO: Returns `any` in node server
public GameModeResponse GetGameMode(
string sessionId,
GameModeRequestData requestData)
{
@@ -70,12 +70,12 @@ public class GameController
/// </summary>
/// <param name="sessionId"></param>
/// <returns></returns>
/*
public CurrentGroupResponse GetCurrentGroup(string sessionId)
{
throw new NotImplementedException();
}
*/
/// <summary>
/// Handle client/checkVersion
@@ -182,4 +182,9 @@ public class GameController
{
throw new NotImplementedException();
}
}
public void Load()
{
throw new NotImplementedException();
}
}