21 lines
158 B
C++
21 lines
158 B
C++
#pragma once
|
|
|
|
#include "shape.hpp"
|
|
|
|
|
|
namespace hpr::csg
|
|
{
|
|
|
|
class Geometry
|
|
{
|
|
|
|
public:
|
|
|
|
Geometry() = default;
|
|
|
|
virtual
|
|
~Geometry() = default;
|
|
|
|
};
|
|
|
|
} |