Files
sdl-test/include/vscreen.h
T
2021-12-14 21:05:07 +00:00

12 lines
218 B
C

#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