Initial commit

This commit is contained in:
2021-12-14 21:05:07 +00:00
commit 2cdd7ee837
5 changed files with 188 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
#ifndef _CAPP_H
#define _CAPP_H
#include <SDL.h>
#endif
+12
View File
@@ -0,0 +1,12 @@
#ifndef _VSCREEN_H
#define _VSCREEN_H
#include <SDL2/SDL.h>
#define VSCREEN_WIDTH 640
#define VSCREEN_HEIGHT 480
#define VSCREEN_COLUMN_COUNT 20
void renderClientScreen(SDL_Renderer *);
#endif