//**************************************************************************// // Try out Tw_Game class (which uses Tw_Board Tw_Link, Tw_Peg, Tw_Color, and Point classes // Dr. Michael A. Redmond // Written: 04/15/97 MAR // Modified: 04/15/97 MAR // // //**************************************************************************// // NO EXCEPTIONS #define EXCEPT_HAND_ON 0 #define EXCEPT_HAND_OFF true // GNU g++ #include #if EXCEPT_HAND_ON #include #include #endif // SUN C++ // #include // #include // #include "bool.h" // #include "tw-link.h" #include "tw-game.h" #include "tw-color.h" int main() { Tw_Game game1(6); Tw_Color winner = game1.Play(); return 0; }