#pragma once

#include "GameCore.h"

class Edge
{
public:
	Edge( POINT* point1, POINT* point2 );
	~Edge(void);
	POINT* getPoint1();
	POINT* getPoint2();
private:
	POINT* point1;
	POINT* point2;
};

