16 lines
268 B
C
16 lines
268 B
C
#ifndef WINDOW_H
|
|
#define WINDOW_H
|
|
|
|
#include "result.h"
|
|
#include "raylib.h"
|
|
#include <stdlib.h>
|
|
|
|
extern const char *TITLE;
|
|
extern const int WIDTH;
|
|
extern const int HEIGHT;
|
|
|
|
Result InitGameWindow(void);
|
|
void HandleWindowEvents(void);
|
|
void ShowSplashScreen(void);
|
|
|
|
#endif |