00001 // ****************************************************************** 00002 // * TITLE: infowin.h * 00003 // * AUTHOR: Steven W * 00004 // * DATE: May 1, 1993 * 00005 // * Purpose: Header file for keywin.c * 00006 // ****************************************************************** 00007 00008 #include "display.h" 00009 #include "checkbox.h" 00010 #include "players.h" 00011 00012 const int InfoXDim = 137; 00013 const int InfoYDim = 75; 00014 00015 class InfoWindow : public Window 00016 { 00017 00018 public: 00019 InfoWindow (); 00020 void Init (Display *d, int x, int y); 00021 void Draw (); 00022 Message Dispatch (Message&) { return NullMsg; } 00023 // messages are not needed, because nothing can be pressed 00024 };