Danbias/Code/GameLogic/Object.h

24 lines
182 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:
//model
//rigidBody
};
}
#endif