added new screens and getting ready for networking, looking at SDL_net for cross platfrom networking so i dont have to touch windows

This commit is contained in:
2026-01-24 19:12:36 -06:00
parent a698c0eb41
commit 3aaf5021cc
468 changed files with 262023 additions and 59 deletions

22
include/overworld.h Normal file
View File

@@ -0,0 +1,22 @@
//Troy Rosin
#ifndef __overworld_h__
#define __overworld_h__
#include <SDL2/SDL.h>
void start_overworld();
#define OW_GRIDSZ 128
typedef struct player
{
SDL_Point pos;
SDL_Texture *texture;
} PLAYER;
PLAYER *get_this_player();
#endif