stratgame

diff src/menu_part.h @ 0:86b53f76899f

foo
author John Tsiombikas <nuclear@member.fsf.org>
date Mon, 21 May 2012 19:07:40 +0300
parents
children
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/src/menu_part.h	Mon May 21 19:07:40 2012 +0300
     1.3 @@ -0,0 +1,16 @@
     1.4 +#ifndef MENU_PART_H_
     1.5 +#define MENU_PART_H_
     1.6 +
     1.7 +#include "part.h"
     1.8 +
     1.9 +class MainMenu : public Part {
    1.10 +	~MainMenu();
    1.11 +
    1.12 +	void draw() const;
    1.13 +
    1.14 +	void reshape(int x, int y);
    1.15 +	void mouse_button(int bn, bool pressed);
    1.16 +	void mouse_motion(int x, int y);
    1.17 +};
    1.18 +
    1.19 +#endif	// MENU_PART_H_