21 lines
278 B
C++
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
|