Mercurial > mm7
view NewUI/MainMenu.h @ 1896:b6a7410ff0ef
renaming dword_4DF380 to dword_4DF380_hostilityRanges, moved it to actor.cpp
author | Grumpy7 |
---|---|
date | Sun, 20 Oct 2013 02:52:48 -0700 |
parents | a5637690ffbb |
children | 5abd8fc8f1c6 |
line wrap: on
line source
#pragma once #include "Core/UIControl.h" #include "..\Render.h" class MainMenuWindow: public UIControl { public: static MainMenuWindow *Create(); bool Initialize(); // UIControl virtual void Show() override; // UIControl virtual bool Focused() override; // UIControl virtual bool OnKey(int key) override; // UIControl virtual bool OnMouseLeftClick(int x, int y) override; // UIControl virtual bool OnMouseRightClick(int x, int y) override; // UIControl //virtual bool OnMouseEnter() override; // UIControl //virtual bool OnMouseLeave() override; private: RGBTexture *background_texture; };