aurora-rendering-engine/include/object/object_set.h

17 lines
261 B
C++

#ifndef ARE_INCLUDE_OBJECT_OBJECT_SET_H
#define ARE_INCLUDE_OBJECT_OBJECT_SET_H
#include <object/object.h>
#include <object/polygon.h>
namespace are {
// Unified container for all objects.
struct ObjectSet {
std::vector<Polygon *> object_set;
};
}
#endif