0001: // ---------------------------------------------------------------------------- 0002: // 0003: // main.h - Imporant constants 0004: // 0005: // Copyright (c) 2002 IMAGIRE Takashi (imagire@gmail.com) 0006: // All Rights Reserved. 0007: // 0008: // ---------------------------------------------------------------------------- 0009: #ifndef _MAIN_H 0010: #define _MAIN_H 0011: 0012: #define FULLSCREEN 0 0013: 0014: #define CAPTION "t-pot" 0015: #define WIDTH 512 // Width 0016: #define HEIGHT 512 // Height 0017: 0018: #define RELEASE(o) if (o){o->Release();o=NULL;} 0019: 0020: #endif /* !_MAIN_H */ 0021: