#pragma once #include "TextureManager.h" #include "Math.h" #include #include "ActiveObject.h" #include namespace ZL { struct Room{ std::shared_ptr roomTexture; std::vector objects; std::string sound_name; std::function roomLogic; }; }