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/battle.h Normal file
View File

@@ -0,0 +1,22 @@
//Troy Rosin
#ifndef __battle_h__
#define __battle_h__
#include <SDL2/SDL.h>
#define GRID_SPACING 4
#define BATTLE_COLS 7
#define BATTLE_ROWS 6
SDL_Rect *battle_rows[BATTLE_ROWS];
SDL_Rect enemy_backrow[BATTLE_COLS];
SDL_Rect enemy_frontrow[BATTLE_COLS];
SDL_Rect friendly_frontrow[BATTLE_COLS];
SDL_Rect friendly_midrow[BATTLE_COLS];
SDL_Rect friendly_backrow[BATTLE_COLS];
SDL_Rect friendly_farrow[BATTLE_COLS];
#endif