Funkční komunikace mezi jedním clientem a serverem

This commit is contained in:
Perry 2025-12-19 17:54:50 +01:00
commit 3f235f6e04
44 changed files with 1030 additions and 0 deletions

View file

@ -0,0 +1,10 @@
using LiteNetLib;
using PacketLib;
namespace FNAF_Server;
public class ServerPlayer {
public NetPeer peer;
public PlayerState state;
public string username;
}