aboutsummaryrefslogtreecommitdiff
path: root/advtrains_train_industrial/models
diff options
context:
space:
mode:
Diffstat (limited to 'advtrains_train_industrial/models')
0 files changed, 0 insertions, 0 deletions
EVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ #ifndef GUIVOLUMECHANGE_HEADER #define GUIVOLUMECHANGE_HEADER #include "irrlichttypes_extrabloated.h" #include "modalMenu.h" #include "client.h" #include <string> class GUIVolumeChange : public GUIModalMenu { public: GUIVolumeChange(gui::IGUIEnvironment* env, gui::IGUIElement* parent, s32 id, IMenuManager *menumgr, Client* client); ~GUIVolumeChange(); void removeChildren(); /* Remove and re-add (or reposition) stuff */ void regenerateGui(v2u32 screensize); void drawMenu(); bool OnEvent(const SEvent& event); private: Client* m_client; }; #endif