// File : fw.h // Author : John Wojcik ( QuietBloke ) // Created : September 2000 // Desc : Main include file for the 2D Game framework. // Sets up max settings for costumes, actors and animations. // This must be included by the main app // // History : // Date Author Description // -------- --------------- ---------------------------------------- #ifndef __FW__ #define __FW__ // Set up limits for framework #define PIXEL_SCREEN_WIDTH (320) // Physical size of #define PIXEL_SCREEN_HEIGHT (255) // the display in pixels #define MAX_COSTUMES 100 #define MAX_ACTORS 320 #define MAX_ANIMATIONS 120 #define TEXT_BUFFER_SIZE 1000 #define MAX_TEXTS 17 // And include everything needed buy the main app #include #include "..\2dfw\fwanimat.h" #include "..\2dfw\fwcostum.h" #include "..\2dfw\fwactor.h" #include "..\2dfw\fwstage.h" #include "..\2dfw\fwpad.h" #include "..\2dfw\fwdirect.h" #include "..\2dfw\fwtext.h" #endif