blob: 4604f72c46f9e7063253def80792b0fddbe0f698 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#ifndef _TABLE_H
#define _TABLE_H
#include "texture.h"
// Draws a table
class table {
public:
table();
~table();
void draw(double width, double height);
private:
KueTexture _texture;
};
#endif
|