| 1234567891011121314151617181920212223 |
- #pragma once
- #include "Vector.h"
- class Model;
- class Entity
- {
- public:
- Entity();
- ~Entity();
- Model* model;
- virtual void draw();
- virtual void update(float elapsedTime) {};
- Vec3f position;
- Vec3f rotation;
- float scale;
- bool canCollide;
- bool inObject(const Vec3f &position);
- };
|