#ifndef GRAPHICSSYSTEM_H #define GRAPHICSSYSTEM_H #include #include "GraphicsObject.h" class GraphicsSystem { public: void AddObject(GraphicsObject *obj) { objects.push_back(obj); } //private: std::vector objects; }; #endif