summaryrefslogtreecommitdiff
path: root/noncore/games/kbill/Bucket.h
blob: d8a21446e875e9d898a7387f9b80d5053b1ab778 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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