add interactable scene but cant switch yet

This commit is contained in:
Naruse
2026-04-26 16:21:34 +08:00
parent f3d958a3ab
commit c9fad34a61
7 changed files with 126 additions and 3 deletions

View File

@@ -0,0 +1,13 @@
namespace MikuSB.GameServer.Server.CallGS.Handlers.Scene;
// Response:{sErr:true or false}
[CallGSApi("ChangeMainScene")]
public class ChangeMainScene : ICallGSHandler
{
public async Task Handle(Connection connection, string param, ushort seqNo)
{
string rsp = $"{{\"sErr\":false}}";
// TODO change scene with ExtraSync
await CallGSRouter.SendScript(connection, "ChangeMainScene", rsp);
}
}