diff options
Diffstat (limited to 'Project/GraphicalElement.h')
-rw-r--r-- | Project/GraphicalElement.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Project/GraphicalElement.h b/Project/GraphicalElement.h new file mode 100644 index 0000000..86ca30d --- /dev/null +++ b/Project/GraphicalElement.h @@ -0,0 +1,14 @@ +#ifndef GRAPHICALELEMENT_H +#define GRAPHICALELEMENT_H + +#include "Element.h" + +class GraphicalElement : public Element +{ +public: + GraphicalElement(); + ~GraphicalElement(); + +}; + +#endif // GRAPHICALELEMENT_H |