restore: whole project

This commit is contained in:
2026-03-05 15:11:09 +01:00
parent 321c661bb8
commit f307470f56
57 changed files with 1270 additions and 0 deletions

16
src/core/window.h Normal file
View File

@@ -0,0 +1,16 @@
#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