mirror of
https://github.com/Nimac0/SDL_Minigame
synced 2026-01-12 13:43:41 +00:00
9 lines
133 B
C++
9 lines
133 B
C++
#include "GameInternal.h"
|
|
|
|
namespace vego {
|
|
extern GameInternal* game;
|
|
}
|
|
|
|
inline GameInternal& VEGO_Game() {
|
|
return *vego::game;
|
|
}; |