32 lines
604 B
C
32 lines
604 B
C
/*=========================================================================
|
|
* Options.h : All specific flags for GAM.
|
|
* This is a part of the Game project.
|
|
*
|
|
* Version 1.0
|
|
* Creation date 31/03/98
|
|
* Revision date
|
|
*
|
|
*
|
|
* (c) Ubi Studios 1996
|
|
*=======================================================================*/
|
|
|
|
#if !defined(__FLAGS_H__)
|
|
#define __FLAGS_H__
|
|
|
|
#define GAM_USE_SCRIPT
|
|
|
|
|
|
#define GAM_COMMAND_LINE
|
|
#define GAM_READ_INI_FILE
|
|
|
|
|
|
#define GAM_USE_SNA
|
|
#define GAM_VIGNETTE
|
|
|
|
|
|
/* no video in rayman2 !*/
|
|
/*#define GAM_VIDEO*/
|
|
|
|
|
|
#endif /* __FLAGS_H__ */
|