mirror of
https://github.com/Nimac0/SDL_Minigame
synced 2026-01-12 09:03:42 +00:00
11 lines
153 B
C++
11 lines
153 B
C++
#pragma once
|
|
|
|
#include "GameInternal.h"
|
|
|
|
namespace vego {
|
|
extern GameInternal* game;
|
|
}
|
|
|
|
inline GameInternal& VEGO_Game() {
|
|
return *vego::game;
|
|
}; |