adding multiplayer

This commit is contained in:
2026-04-15 06:57:15 -07:00
parent af639e62c3
commit 3a91db6321
32 changed files with 938 additions and 174 deletions

View File

@@ -0,0 +1,11 @@
#ifndef PLAYER_E_H
#define PLAYER_E_H
#include "../entity.h"
#include "../world.h"
#include "../player/player_data.h"
entity* CreatePlayerEntity(player_data pd, int serverfd, world* w);
#endif