You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
206 B
C
19 lines
206 B
C
7 months ago
|
#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
|