18 lines
357 B
C
18 lines
357 B
C
#ifndef _VSCREEN_H
|
|
#define _VSCREEN_H
|
|
|
|
#include <stdio.h>
|
|
#include <SDL2/SDL.h>
|
|
#include <SDL2/SDL_image.h>
|
|
#include <SDL2/SDL_rect.h>
|
|
#include <SDL2/SDL_render.h>
|
|
|
|
#define VSCREEN_WIDTH 640
|
|
#define VSCREEN_HEIGHT 480
|
|
#define VSCREEN_COLUMN_COUNT 40
|
|
#define VSCREEN_ROW_COUNT 20
|
|
|
|
void renderClientScreen(SDL_Renderer *);
|
|
|
|
|
|
#endif |