]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blob - Constructor/cistern.h
3fb32ba12998ccde08514ea6024e875b39422078
[z.facultad/75.42/plaqui.git] / Constructor / cistern.h
1 // cistern.h
2 #ifndef _CISTERN_H_
3 #define _CISTERN_H_
4
5 #include "item.h"
6
7 class Cistern : public CItem {
8         public:
9                 Cistern();
10                 virtual ~Cistern();
11                 virtual bool on_button_press_event(GdkEventButton *event);
12                 virtual void on_menu_popup_rotar();
13         private:
14                 int imgActual;  
15         
16                 Glib::RefPtr<Gdk::Pixbuf> imageE; // 0 
17                 Glib::RefPtr<Gdk::Pixbuf> imageO; // 1
18                 Glib::RefPtr<Gdk::Pixbuf> null; 
19 };
20 #endif