Main Page   Class Hierarchy   Alphabetical List   Compound List   File List   Compound Members   File Members  

Zmain.h

Go to the documentation of this file.
00001 /*
00002 
00003         ZMACHINE 2.0 (SIGFRID)
00004 
00005         ZMAIN.H
00006 
00007         author:                 Trombetta Roberto
00008         filename:               Zmain.h 
00009         description:    main file
00010         date:                   18/06/2003
00011 
00012 */
00013 
00014 #include "CVideoDeviceWin32.h"
00015 #include "CDisplay.h"
00016 #include "CKeyboard.h"
00017 
00018 int main () {
00019 
00020         CVideoDeviceWin32       VDW32;
00021         CVideoDevice            &VD = VDW32;
00022         CDisplay                        display;
00023                 
00024         VD.Init (1024,768);
00025         VD.SetDisplay(&display);
00026         VD.Begin ();
00027         VD.Loop ();
00028         VD.End ();
00029         return 0;
00030 
00031 }
00032 



SourceForge.net Logo