mirror of
https://github.com/Armored-Dragon/overte.git
synced 2025-03-11 16:13:16 +01:00
30 lines
875 B
C++
30 lines
875 B
C++
//
|
|
// RenderableBoxEntityItem.h
|
|
// libraries/entities-renderer/src/
|
|
//
|
|
// 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_RenderableBoxEntityItem_h
|
|
#define hifi_RenderableBoxEntityItem_h
|
|
|
|
#include <BoxEntityItem.h>
|
|
#include "RenderableDebugableEntityItem.h"
|
|
|
|
class RenderableBoxEntityItem : public BoxEntityItem {
|
|
public:
|
|
static EntityItem* factory(const EntityItemID& entityID, const EntityItemProperties& properties);
|
|
|
|
RenderableBoxEntityItem(const EntityItemID& entityItemID, const EntityItemProperties& properties) :
|
|
BoxEntityItem(entityItemID, properties)
|
|
{ }
|
|
|
|
virtual void render(RenderArgs* args);
|
|
};
|
|
|
|
|
|
#endif // hifi_RenderableBoxEntityItem_h
|