first commit

This commit is contained in:
qornwh1
2026-02-28 14:16:07 +09:00
commit 30457819b1
28 changed files with 3006 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
using LiteNetLib;
namespace ServerLib.Service;
public class Session
{
public long HashKey { get; init; }
public NetPeer Peer { get; set; }
public Session(long hashKey, NetPeer peer)
{
HashKey = hashKey;
Peer = peer;
}
}