Got the refactor building

This commit is contained in:
2024-08-22 23:00:55 -04:00
parent 3e4f0124db
commit 3a49761b66
10 changed files with 274 additions and 224 deletions

14
lib/Board/Cube.h Normal file
View File

@@ -0,0 +1,14 @@
/**
* @file Cube.h
* @brief An object to store the data of one cube
*/
#pragma once
#include "Vector3D.h"
class Cube{
public:
V3D color;
bool isOccupied{false};
};