summaryrefslogtreecommitdiff
path: root/noncore/games/kbill/Bucket.h
Side-by-side diff
Diffstat (limited to 'noncore/games/kbill/Bucket.h') (more/less context) (show whitespace changes)
-rw-r--r--noncore/games/kbill/Bucket.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/noncore/games/kbill/Bucket.h b/noncore/games/kbill/Bucket.h
new file mode 100644
index 0000000..d8a2144
--- a/dev/null
+++ b/noncore/games/kbill/Bucket.h
@@ -0,0 +1,17 @@
+#ifndef BUCKET_H
+#define BUCKET_H
+
+#include "Picture.h"
+#include "MCursor.h"
+
+class Bucket {
+public:
+ Picture picture;
+ MCursor cursor;
+ int width, height;
+ void draw();
+ int clicked(int x, int y);
+ void load_pix();
+};
+
+#endif