remove cruft

This commit is contained in:
Andrew Meadows 2017-11-08 16:32:19 -08:00
parent 8707c76a6a
commit e93c10b5ee

View file

@ -51,14 +51,6 @@ using ModelWeakPointer = std::weak_ptr<Model>;
using CalculateEntityLoadingPriority = std::function<float(const EntityItem& item)>;
class SortableEntityRenderer {
public:
SortableEntityRenderer(EntityRendererPointer r, float p) : renderer(r), priority(p) {}
EntityRendererPointer renderer;
float priority;
bool operator<(const SortableEntityRenderer& other) const { return priority < other.priority; }
};
// Generic client side Octree renderer class.
class EntityTreeRenderer : public OctreeProcessor, public Dependency {
Q_OBJECT