24 lines
182 B
C
24 lines
182 B
C
|
#ifndef OBJECT_H
|
||
|
#define OBJECT_H
|
||
|
|
||
|
namespace GameLogic
|
||
|
{
|
||
|
|
||
|
class Object
|
||
|
{
|
||
|
|
||
|
public:
|
||
|
Object(void);
|
||
|
~Object(void);
|
||
|
|
||
|
private:
|
||
|
|
||
|
protected:
|
||
|
//model
|
||
|
//rigidBody
|
||
|
|
||
|
};
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif
|