#include <iostream>
#include <vector>
#include "termmanip.h"
#include "shape.h"
using namespace std;
int main() {
vector<shape*> shapes;
shape *s;
cout << clearScreen;
cout.flush();
while(s = getUserShape()) {
s->draw();
shapes.push_back(s);
}
return 0;
}