WutheringWaves/GameServer/Controllers/ShopController.cs
2024-02-25 00:54:49 +03:00

15 lines
433 B
C#

using GameServer.Controllers.Attributes;
using GameServer.Network;
using Protocol;
namespace GameServer.Controllers;
internal class ShopController : Controller
{
public ShopController(PlayerSession session) : base(session)
{
// ShopController.
}
[NetEvent(MessageId.PayShopInfoRequest)]
public RpcResult OnPayShopInfoRequest() => Response(MessageId.PayShopInfoResponse, new PayShopInfoResponse());
}