Finished commenting code changes

This commit is contained in:
2024-08-24 14:07:12 -04:00
parent 5caa0a8a61
commit a59a6657e8
5 changed files with 85 additions and 28 deletions

View File

@@ -1,6 +1,11 @@
/**
* @file BoardTypes.h
* @brief Some types to that you'll need to define and control the board
*/
#pragma once
#include <cstdint>
#include "Vector3D.h"
namespace BOARD_TYPES{
struct CubeStack{
@@ -13,4 +18,9 @@ namespace BOARD_TYPES{
Y,
Z
};
struct Cube{
V3D color;
bool isOccupied{false};
};
};