/////////////////////////////////////////////////////////////////////////////// // This is an empty graphics source file. // // It was originally created by Mike MacFerrin (10/31/2006), but you may use it // for any graphics assignment you wish to make. Simply type your code, // change the comments, and make it your own. // // For a full reference to the BGI functions, look here: // http://www.cs.colorado.edu/~main/cs1300/doc/bgi/index.html // /////////////////////////////////////////////////////////////////////////////// #include using namespace std; #include int main() { initwindow(200,200); system("pause"); closegraph(); return 0; }