home *** CD-ROM | disk | FTP | other *** search
- #ifndef __version_h__
- #define __version_h__
-
- /*!
- \file version.h
- \author Karsten Schwenk
-
- \brief This file contains nothing more than the version info of the game (a few defines to use in the other files).
-
- */
-
- #define FWP_VERSION_MAJOR 0
- #define FWP_VERSION_MINOR 0
- #define FWP_VERSION_RELEASE 6
- #define FWP_VERSION_STRING "0.0.6"
-
- #ifdef WIN32
- #define FWP_OS_STRING "win32"
- #else
- #define FWP_OS_STRING "linux" //!< a string describing the OS that this version of FWP was compiled for
- #endif
-
- #define FWP_COPYRIGHT_NOTE "Copyright (c) 2004 The FWP-Team"
-
- #endif /* __version_h__ */
-