16 lines
224 B
C++
16 lines
224 B
C++
#ifndef GRAPHICS_H
|
|
#define GRAPHICS_H
|
|
|
|
#include "./wxw.h"
|
|
|
|
class Graphics {
|
|
public:
|
|
Graphics() {};
|
|
~Graphics() {};
|
|
|
|
void drawTable(wxDC& dc, wxSize wndSize);
|
|
void drawBG(wxDC& dc, wxSize wndSize);
|
|
};
|
|
|
|
#endif
|