home *** CD-ROM | disk | FTP | other *** search
/ Virtual Reality Madness / VRMAD96_ONE.ISO / virtek / libex / libex097.c < prev    next >
C/C++ Source or Header  |  1995-08-24  |  635b  |  21 lines

  1.                                                // Example: 097 from Library Reference
  2. #include "..\3D-Ware\dddware.h"
  3. short  main(void)
  4. {
  5.   dddLoadColors("EXAMPLE.COL");                // Load in the color palette called 'example.col' to 'standardpal'.
  6.   dddInitVideo();
  7.   dddSetPal(dddstandardpal);
  8.   dddInit3d();
  9.   dddInitKeybd();
  10.   while (!dddkeycode)
  11.   {
  12.     dddHorizon(0,0);                           // Draw a horizon as a backdrop.
  13.     dddPrint7(2,2,10,"PRESS ANY KEY TO EXIT"); // Color 2, top left of screen.
  14.     dddScreenSwap();
  15.   }
  16.   dddRestoreKeybd();
  17.   dddRestoreVideo();
  18.   dddClose3d();
  19.   return 0;
  20. }
  21.