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.
|
#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
|