import { Polygon } from "./Polygon";

export class Shape<T> extends Polygon<T>{
    constructor() {
        super()
    }
}