10 lines
121 B
C++
10 lines
121 B
C++
#include "shapedef.hpp"
|
|
#include <stdio.h>
|
|
|
|
main()
|
|
{
|
|
shape_manager sm;
|
|
|
|
while (sm.draw() != -1) ;
|
|
}
|