commit code from airplane

This commit is contained in:
Mikhail Thompson
2024-06-30 12:24:36 -04:00
parent 2e3ed14c93
commit e81893c8f2
20 changed files with 317 additions and 145 deletions

View File

@@ -0,0 +1,21 @@
using nksrv.Utils;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace nksrv.LobbyServer.Msgs.Shop
{
[PacketPath("/shop/productlist")]
public class GetShopProductList : LobbyMsgHandler
{
protected override async Task HandleAsync()
{
var req = await ReadData<ReqShopProductList>();
var response = new ResShopProductList();
WriteData(response);
}
}
}