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