summaryrefslogtreecommitdiffstats
path: root/kue/cue.h
blob: d92bc7a2047796063cd41883500cad146cda494b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef _CUE_H
#define _CUE_H

class TQColor;
class KueTexture;

// Draws a pool cue
class cue {
  public:
	static void draw(double x, double y, double angle, KueTexture &texture, const TQColor &tip_color);
};

#endif