]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blob - Constructor/cistern.h
- saco estos archivos porque no los uso y me molestan
[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                 virtual void on_menu_popup_propiedades();
14         private:
15                 int imgActual;  
16         
17                 Glib::RefPtr<Gdk::Pixbuf> imageE; // 0 
18                 Glib::RefPtr<Gdk::Pixbuf> imageO; // 1
19                 Glib::RefPtr<Gdk::Pixbuf> null; 
20 };
21 #endif