game/mario/global_vars.hpp
zvon 92ffac0edf
Some checks failed
continuous-integration/drone/push Build is failing
Mario: add basic main menu to editor, separate scenes from main game loop
2022-06-26 15:13:06 +02:00

18 lines
651 B
C++

#ifndef GLOBAL_VARS_H
#define GLOBAL_VARS_H
#include "../sdlpp/sdlpp.hpp"
extern std::shared_ptr<SDLPP::Texture> g_terrain_texture;
extern std::shared_ptr<SDLPP::Texture> g_mario_texture;
extern std::shared_ptr<SDLPP::Texture> g_mod_texture;
extern std::shared_ptr<SDLPP::Texture> g_enemies_texture;
extern std::shared_ptr<SDLPP::Texture> g_translucent_terrain_texture;
extern std::shared_ptr<SDLPP::Texture> g_translucent_mod_texture;
extern std::shared_ptr<SDLPP::Texture> g_translucent_enemies_texture;
extern std::shared_ptr<SDLPP::Scene> g_playground;
extern std::shared_ptr<SDLPP::FontConfiguration> g_text_config;
extern bool g_quit;
#endif