mirror of
https://github.com/MikuLeaks/MikuSB.git
synced 2026-06-04 08:23:58 +00:00
14 lines
484 B
C#
14 lines
484 B
C#
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;
|
|
}
|
|
}
|