mirror of
https://github.com/EpinelPS/EpinelPS.git
synced 2025-12-14 16:04:36 +01:00
Initial commit
This commit is contained in:
17
nksrv/LobbyServer/Msgs/Trigger/GetMainQuestData.cs
Normal file
17
nksrv/LobbyServer/Msgs/Trigger/GetMainQuestData.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
using nksrv.Utils;
|
||||
|
||||
namespace nksrv.LobbyServer.Msgs.Trigger
|
||||
{
|
||||
[PacketPath("/Trigger/GetMainQuestData")]
|
||||
public class GetMainQuestData : LobbyMsgHandler
|
||||
{
|
||||
protected override async Task HandleAsync()
|
||||
{
|
||||
var req = await ReadData<ReqGetMainQuestData>();
|
||||
|
||||
var response = new ResGetMainQuestData();
|
||||
response.MainQuestList.Add(new NetMainQuestData() { IsReceived = true, Tid = 1 });
|
||||
WriteData(response);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user