feat: initial commit

This commit is contained in:
2025-09-30 16:12:38 +02:00
commit 1d1d23a148
42 changed files with 9256374 additions and 0 deletions

16
include/block.h Normal file
View File

@ -0,0 +1,16 @@
#ifndef BLOCK_H_
#define BLOCK_H_
#include <glm/glm.hpp>
class Block {
private:
glm::vec3 m_position;
glm::vec4 m_color;
public:
Block(glm::vec3 position, glm::vec4 color);
public:
inline glm::vec3 Position() const { return m_position; }
inline glm::vec4 Color() const { return m_color; }
};
#endif