SparrowRenderer/entity.h
2015-07-28 13:17:14 +02:00

12 lines
165 B
C++

#ifndef ENTITY
#define ENTITY
class Entity
{
public:
virtual void draw(const glm::mat4 viewMatrix, const glm::mat4 projectionMatrix) = 0;
};
#endif // ENTITY