0
0
mirror of https://github.com/Nimac0/SDL_Minigame synced 2026-01-12 09:03:42 +00:00
Nimac0 70080681e0
Some checks failed
/ deploy (push) Failing after 33s
Docs: Formatting and more content
2025-05-02 13:45:07 +02:00

19 lines
395 B
C++

#include "GameInternal.h"
namespace vego {
extern GameInternal* game;
}
/**
* \brief gives access to internal resources such as managers and handlers
* \details gives access to the following useful managers and handlers
* - this is a list
* - using markdown
* - since markdown is supported :)
*
* 1. also numbered
* 2. lists works
*/
inline GameInternal& VEGO_Game() {
return *vego::game;
};