// File : fwDirect.h // Author : John Wojcik ( QuietBloke ) // Created : August 2000 // Desc : Expose external functions of the 2D Game Framework // Director manager. This manager is the top level manager. // It initialises the display the begin with. It then // co-oridnates the various other managers in order to // refresh the display. // // History : // Date Author Description // -------- --------------- ---------------------------------------- #ifndef __FWDIRECT__ #define __FWDIRECT__ // Function : fwDirectInit // Parameters // Returns // // Function : fwDirectRefresh // Parameters // Returns // // Function : fwDirectSync // Parameters // Returns // void fwDirectInit ( void ); void fwDirectSetBackGround ( int redValue, int greenValue, int BlueValue ); void fwDirectRefresh ( void ); int fwDirecthSync ( void ); int fwDirectScreenWidth(void); int fwDirectScreenHeight(void); #endif