初具模型的扫雷

This commit is contained in:
wlx
2025-07-16 18:48:06 +08:00
commit 68eebdd09f
544 changed files with 242337 additions and 0 deletions

14
include/Global.h Normal file
View File

@ -0,0 +1,14 @@
#ifndef GLOBAL_H
#define GLOBAL_H
#include "def.h"
#include "context.h"
#include "window.h"
typedef struct Global {
Context context;
Window window;
} Global;
extern Global global;
#endif //GLOBAL_H