1 /* -*- c++ -*-
2 FILE: Main.cpp
3 RCS REVISION: $Revision: 1.12 $
4 
5 COPYRIGHT: (c) 1999 -- 2003 Melinda Green, Don Hatch, and Jay Berkenbilt - Superliminal Software
6 
7 LICENSE: Free to use and modify for non-commercial purposes as long as the
8     following conditions are adhered to:
9     1) Obvious credit for the source of this code and the designs it embodies
10        are clearly made, and
11     2) Ports and derived versions of 4D Magic Cube programs are not distributed
12        without the express written permission of the authors.
13 
14 DESCRIPTION:
15     This is the entry point of the UNIX portion of the MagicCube4d
16     application.
17 */
18 
19 #include "EventHandler.h"
20 
21 #include <stdio.h>
22 
23 extern int
main(int argc,char ** argv)24 main(int argc, char **argv)
25 {
26     // If there is ever more than one machine type, we will need to
27     // introduce some mechanism for runtime selection of the machine
28     // and create the new machine with a factory method.
29     EventHandler(argc, argv, "X").run();
30     return 0;
31 }
32 
33 // Local Variables:
34 // c-basic-offset: 4
35 // c-comment-only-line-offset: 0
36 // c-file-offsets: ((defun-block-intro . +) (block-open . 0) (substatement-open . 0) (statement-cont . +) (statement-case-open . +4) (arglist-intro . +) (arglist-close . +) (inline-open . 0))
37 // indent-tabs-mode: nil
38 // End:
39