grafika_komputerowa/grk/project/GameObject.h

9 lines
111 B
C
Raw Normal View History

2024-01-08 16:17:25 +01:00
#include "glm.hpp"
#pragma once
class GameObject
{
public:
virtual glm::mat4 getPositionMatrix() = 0;
};