stratgame

view src/menu_part.h @ 5:2e38715de41b

terrain
author John Tsiombikas <nuclear@member.fsf.org>
date Sun, 27 May 2012 07:00:48 +0300
parents
children
line source
1 #ifndef MENU_PART_H_
2 #define MENU_PART_H_
4 #include "part.h"
6 class MainMenu : public Part {
7 ~MainMenu();
9 void draw() const;
11 void reshape(int x, int y);
12 void mouse_button(int bn, bool pressed);
13 void mouse_motion(int x, int y);
14 };
16 #endif // MENU_PART_H_