31 lines
459 B
C++
31 lines
459 B
C++
#ifndef OBJECT_H
|
|
#define OBJECT_H
|
|
|
|
#include "Model/Model.h"
|
|
#include "Render/Rendering/Render.h"
|
|
#include "Utilities.h"
|
|
|
|
namespace GameLogic
|
|
{
|
|
|
|
class Object
|
|
{
|
|
|
|
public:
|
|
Object(void);
|
|
virtual ~Object(void);
|
|
|
|
Utility::DynamicMemory::UniquePointer<Oyster::Graphics::Render::Model> model;
|
|
void Render();
|
|
|
|
private:
|
|
|
|
protected:
|
|
//either a model pointer or an ID to an arraypos filled with models that are to be rendered
|
|
//rigidBody
|
|
|
|
};
|
|
|
|
}
|
|
|
|
#endif |