2011-06-14 04:19:01 -04:00
|
|
|
/************************************************************************
|
|
|
|
* *
|
|
|
|
* Star Traders: A Game of Interstellar Trading *
|
|
|
|
* Copyright (C) 1990-2011, John Zaitseff *
|
|
|
|
* *
|
|
|
|
************************************************************************/
|
|
|
|
|
|
|
|
/*
|
2011-06-14 09:01:15 -04:00
|
|
|
Author: John Zaitseff <J.Zaitseff@zap.org.au>
|
2011-06-14 04:19:01 -04:00
|
|
|
$Id$
|
|
|
|
|
2011-06-15 08:34:28 -04:00
|
|
|
This file, trader.h, contains overall definitions for Star Traders.
|
2011-06-14 04:19:01 -04:00
|
|
|
|
|
|
|
|
|
|
|
This program is free software: you can redistribute it and/or modify it
|
|
|
|
under the terms of the GNU General Public License as published by the
|
|
|
|
Free Software Foundation, either version 3 of the License, or (at your
|
|
|
|
option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see http://www.gnu.org/licenses/.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2011-06-14 09:11:16 -04:00
|
|
|
#ifndef included_TRADER_H
|
2011-06-14 09:19:58 -04:00
|
|
|
#define included_TRADER_H 1
|
2011-06-14 04:19:01 -04:00
|
|
|
|
|
|
|
|
2011-06-15 08:34:28 -04:00
|
|
|
/************************************************************************
|
|
|
|
* Global definitions *
|
|
|
|
************************************************************************/
|
|
|
|
|
2011-07-02 07:19:51 -04:00
|
|
|
#define GAME_FILE_HEADER PACKAGE_NAME " Saved Game"
|
2011-06-30 07:52:55 -04:00
|
|
|
#define GAME_FILE_API_VERSION "7.0" /* For game loads and saves */
|
2011-06-15 08:34:28 -04:00
|
|
|
|
|
|
|
|
|
|
|
/************************************************************************
|
|
|
|
* Program-specific header files *
|
|
|
|
************************************************************************/
|
|
|
|
|
|
|
|
#include "system.h"
|
2011-06-14 22:55:19 -04:00
|
|
|
#include "globals.h"
|
2011-07-02 07:25:57 -04:00
|
|
|
#include "intf.h"
|
2011-06-15 08:34:28 -04:00
|
|
|
#include "utils.h"
|
2011-06-14 22:55:19 -04:00
|
|
|
|
|
|
|
|
2011-06-14 09:11:16 -04:00
|
|
|
#endif /* included_TRADER_H */
|