Volumes/include/Block/block.h
2024-07-07 20:42:39 +02:00

21 lines
278 B
C++

//
// Created by nb on 07.07.24.
//
#ifndef BLOCK_BLOCK_H
#define BLOCK_BLOCK_H
#include <Vector/vector3.h>
namespace Volumes{
class Block{
public:
virtual ~Block() = default;
private:
Vector::Vector3 corners[8];
};
}
#endif //BLOCK_BLOCK_H