Added several CallGS handlers.

This commit is contained in:
Kei-Luna
2026-04-22 06:03:42 +09:00
parent 2a961704a8
commit 1c2a43fa61
12 changed files with 124 additions and 4 deletions

View File

@@ -0,0 +1,13 @@
namespace MikuSB.GameServer.Server.CallGS.Handlers.Chapter;
// Client syncs completed guide level data to the server. No response required.
// param: {tbData = [{nLevelID, passTime}, ...]}
[CallGSApi("Chapter_SyncGuideLevelPassData")]
public class Chapter_SyncGuideLevelPassData : ICallGSHandler
{
public Task Handle(Connection connection, string param, ushort seqNo)
{
// TODO: persist guide level pass data to player save
return Task.CompletedTask;
}
}