mirror of
https://github.com/overte-org/overte.git
synced 2025-08-07 14:10:40 +02:00
29 lines
850 B
C++
29 lines
850 B
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 <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
|