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,13 @@
#ifndef PLAYER_C_H
#define PLAYER_C_H
#include "../entity.h"
#include "../../client_source/client.h"
#include "../world.h"
#include "../player/player_data.h"
entity* CreatePlayerCharecter(player_data pd, client* cli ,world* w);
#endif