/************************************************************* ****************** ===STEP1.EXE=== ******************** ************************************************************* Copyright (c)1996 Grafik Software by Malcolm Taylor -> STEP1.CC -> First tutorial step. */ #include "step1.h" // The destructor for the main menu window. MainMenuWindow::~MainMenuWindow() { delete menu; } void main(int argc,char *argv[]) { char *temp; ws.Init("tutorial.cfg"); // Initialise the system with tutorial.cfg MainMenuWindow Main; // Create the main menu window (and menu) ws.RefreshDesktop(); // Refresh (draw) the desktop ws.RunEvents(); // Start up the system event handling loops }