mirror of
https://github.com/AleziaKurdis/overte.git
synced 2025-08-10 23:43:30 +02:00
32 lines
897 B
C++
32 lines
897 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 "RenderableEntityItem.h"
|
|
|
|
class RenderableBoxEntityItem : public BoxEntityItem {
|
|
public:
|
|
static EntityItemPointer factory(const EntityItemID& entityID, const EntityItemProperties& properties);
|
|
|
|
RenderableBoxEntityItem(const EntityItemID& entityItemID, const EntityItemProperties& properties) :
|
|
BoxEntityItem(entityItemID, properties)
|
|
{ }
|
|
|
|
virtual void render(RenderArgs* args);
|
|
|
|
SIMPLE_RENDERABLE()
|
|
};
|
|
|
|
|
|
#endif // hifi_RenderableBoxEntityItem_h
|