mirror of
https://github.com/MikuLeaks/MikuSB.git
synced 2026-06-06 03:43:59 +00:00
Paradoxes can play(It is still in the experimental stage and contains many bugs.)
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
namespace MikuSB.GameServer.Server.CallGS.Handlers.Rogue3D;
|
||||
|
||||
// Selects the Rogue3D game mode (nModeID: 1=infinity, 2=normal, 3=season).
|
||||
// param: {"nModeID": int}
|
||||
// Response: {} on success, {"sErr": "key"} on failure
|
||||
[CallGSApi("Rogue3D_SelectMode")]
|
||||
public class Rogue3D_SelectMode : ICallGSHandler
|
||||
{
|
||||
public async Task Handle(Connection connection, string param, ushort seqNo)
|
||||
{
|
||||
await CallGSRouter.SendScript(connection, "Rogue3D_SelectMode", "{}");
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user