#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