Mario: add enemies textures

This commit is contained in:
zvon 2021-08-08 21:19:26 +02:00
parent 4f65dba2e0
commit f3c4380bfb
2 changed files with 4 additions and 0 deletions

View File

@ -4,7 +4,9 @@
std::shared_ptr< SDLPP::Texture > g_terrain_texture{}; std::shared_ptr< SDLPP::Texture > g_terrain_texture{};
std::shared_ptr< SDLPP::Texture > g_mario_texture{}; std::shared_ptr< SDLPP::Texture > g_mario_texture{};
std::shared_ptr< SDLPP::Texture > g_mod_texture{}; std::shared_ptr< SDLPP::Texture > g_mod_texture{};
std::shared_ptr< SDLPP::Texture > g_enemies_texture{};
std::shared_ptr< SDLPP::Texture > g_translucent_terrain_texture{}; std::shared_ptr< SDLPP::Texture > g_translucent_terrain_texture{};
std::shared_ptr< SDLPP::Texture > g_translucent_mod_texture{}; std::shared_ptr< SDLPP::Texture > g_translucent_mod_texture{};
std::shared_ptr< SDLPP::Texture > g_translucent_enemies_texture;
std::shared_ptr< SDLPP::Scene > g_playground{}; std::shared_ptr< SDLPP::Scene > g_playground{};
std::shared_ptr< SDLPP::FontConfiguration > g_text_config{}; std::shared_ptr< SDLPP::FontConfiguration > g_text_config{};

View File

@ -6,8 +6,10 @@
extern std::shared_ptr< SDLPP::Texture > g_terrain_texture; 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_mario_texture;
extern std::shared_ptr< SDLPP::Texture > g_mod_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_terrain_texture;
extern std::shared_ptr< SDLPP::Texture > g_translucent_mod_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::Scene > g_playground;
extern std::shared_ptr< SDLPP::FontConfiguration > g_text_config; extern std::shared_ptr< SDLPP::FontConfiguration > g_text_config;