Added object.hh
This commit is contained in:
parent
69e5b0073e
commit
80db1456d6
20
object.hh
Normal file
20
object.hh
Normal file
@ -0,0 +1,20 @@
|
||||
#ifndef OBJECT_HH_INCLUDED
|
||||
#define OBJECT_HH_INCLUDED
|
||||
|
||||
#include "entity.hh"
|
||||
#include "model.hh"
|
||||
#include "texture.hh"
|
||||
#include <ACGL/Math/Math.hh>
|
||||
|
||||
class Object : Entity {
|
||||
public:
|
||||
Object(Model model, Texture texture, glm::vec3 position, glm::vec3 rotation, glm::vec3 velocity, glm::vec3 angularVelocity);
|
||||
~Object();
|
||||
private:
|
||||
Model model;
|
||||
Texture texture;
|
||||
glm::vec3 velocity;
|
||||
glm::vec3 angularVelocity;
|
||||
};
|
||||
|
||||
#endif
|
Loading…
Reference in New Issue
Block a user