there is now a player character and the world renders using a cammera

This commit is contained in:
2026-04-09 13:11:55 -07:00
parent 09c310cb4a
commit af639e62c3
47 changed files with 1737 additions and 83 deletions

View File

@@ -0,0 +1,24 @@
#ifndef GAME_CLIENT_H
#define GAME_CLIENT_H
#include "transactions.h"
typedef struct {
const char* ip;
int port;
int id;
} server_info;
typedef struct {
int socket;
server_info info;
}game_server;
int Connect(game_server* gs);
int Send(game_server* gs,packet* packet);
int Recive(game_server* gs, packet* pakcet);
int Disconnect(game_server* gs);
#endif