Mercurial > mm7
view NewUI/MainMenu.h @ 1850:521ffedabe19
sub_448518_npc_set_item using body of cleaned up Actor::GiveItem
author | Grumpy7 |
---|---|
date | Sun, 13 Oct 2013 10:45:48 +0200 |
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; };