// 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 PIXEL_SCREEN_WIDTH (320*2) // Physical size of #define PIXEL_SCREEN_HEIGHT (255*2) // the display in pixels #define MAX_COSTUMES 80 #define MAX_ACTORS 120 #define MAX_ANIMATIONS 120 // And include everything needed buy the main app #include #include "fwanimat.h" #include "fwcostum.h" #include "fwactor.h" #include "fwstage.h" #include "fwpad.h" #include "fwdirect.h" #endif