mirror of
https://github.com/overte-org/overte.git
synced 2025-07-29 18:52:11 +02:00
40 lines
1 KiB
C++
40 lines
1 KiB
C++
//
|
|
// RenderableSphereEntityItem.h
|
|
// interface/src/entities
|
|
//
|
|
// Created by Brad Hefta-Gaub on 8/6/14.
|
|
// Copyright 2014 High Fidelity, Inc.
|
|
//
|
|
// Distributed under the Apache License, Version 2.0.
|
|
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
|
//
|
|
|
|
#ifndef hifi_RenderableSphereEntityItem_h
|
|
#define hifi_RenderableSphereEntityItem_h
|
|
|
|
#include <glm/glm.hpp>
|
|
#include <stdint.h>
|
|
|
|
#include <EntityTree.h>
|
|
#include <Octree.h>
|
|
#include <OctreePacketData.h>
|
|
#include <OctreeRenderer.h>
|
|
#include <PacketHeaders.h>
|
|
#include <SharedUtil.h>
|
|
#include <ViewFrustum.h>
|
|
|
|
#include <SphereEntityItem.h>
|
|
|
|
class RenderableSphereEntityItem : public SphereEntityItem {
|
|
public:
|
|
static EntityItem* factory(const EntityItemID& entityID, const EntityItemProperties& properties);
|
|
|
|
RenderableSphereEntityItem(const EntityItemID& entityItemID, const EntityItemProperties& properties) :
|
|
SphereEntityItem(entityItemID, properties)
|
|
{ }
|
|
|
|
virtual void render(RenderArgs* args);
|
|
};
|
|
|
|
|
|
#endif // hifi_RenderableSphereEntityItem_h
|