Snowflake/RPG.Services.Gameserver/Session/PlayerSession.cs

11 lines
266 B
C#
Raw Normal View History

2024-01-18 22:13:40 +00:00
using RPG.Services.Core.Network;
using RPG.Services.Core.Session;
namespace RPG.Services.Gameserver.Session;
internal class PlayerSession : RPGSession
{
public PlayerSession(ulong sessionId, ServiceBox serviceBox) : base(sessionId, serviceBox)
{
}
}