1 2 3 4 5 6 7 8 9 10 11
#ifndef WORLD_H #define WORLD_H #include "worldobject.h" #include <collection.hpp> class World : public Collection<WorldObject> { public: }; #endif