summaryrefslogtreecommitdiffstats
path: root/kue/pocket.h
blob: 4e05ca6a63990681988128b1ad61f8c74759099f (plain)
1
2
3
4
5
6
7
8
9
10
#ifndef _POCKET_H
#define _POCKET_H

// Pockets are just circles with a set radius
class KuePocket : public circle {
  public:
	KuePocket(double x, double y, double r) : circle(x, y, r) {}
};

#endif