SparrowRenderer/src/entity.h
2015-12-15 20:00:34 +01: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