Danbias/Code/GameLogic/Object.h

24 lines
266 B
C
Raw Normal View History

2013-11-19 18:35:35 +01:00
#ifndef OBJECT_H
#define OBJECT_H
namespace GameLogic
{
class Object
{
public:
Object(void);
~Object(void);
private:
protected:
2013-11-20 12:23:45 +01:00
//either a model pointer or an ID to an arraypos filled with models that are to be rendered
2013-11-19 18:35:35 +01:00
//rigidBody
};
}
#endif