12 lines
148 B
C++
12 lines
148 B
C++
#pragma once
|
|
|
|
#include "Shape.h"
|
|
|
|
namespace J3ML::Geometry {
|
|
class Polygon : public Shape
|
|
{
|
|
public:
|
|
protected:
|
|
private:
|
|
};
|
|
} |