mirror of
https://github.com/MikuLeaks/MikuSB.git
synced 2026-06-05 00:13:59 +00:00
CallGS
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
namespace MikuSB.GameServer.Server.CallGS.Handlers.Achievement;
|
||||
|
||||
[CallGSApi("Achievement_GetReward")]
|
||||
public class Achievement_GetReward : ICallGSHandler
|
||||
{
|
||||
public async Task Handle(Connection connection, string param, ushort seqNo)
|
||||
{
|
||||
// param: json.encode({nId = nId})
|
||||
// TODO: implement reward logic
|
||||
|
||||
await CallGSRouter.SendScript(connection, "Achievement_GetReward", "{}", seqNo);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user