14 lines
181 B
C++
14 lines
181 B
C++
/**
|
|
* @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};
|
|
}; |