37 lines
1.1 KiB
C++
37 lines
1.1 KiB
C++
/*
|
|
This file is part of TTT3D - Steve's 3D TicTacToe Player.
|
|
Copyright (C) 2001 Steve Baker
|
|
|
|
TTT3D 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 2 of the License, or
|
|
(at your option) any later version.
|
|
|
|
TTT3D 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 TTT3D; if not, write to the Free Software
|
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
For further information visit http://plib.sourceforge.net
|
|
|
|
$Id: level.h 1427 2002-08-18 00:09:46Z ude $
|
|
*/
|
|
|
|
|
|
class Level
|
|
{
|
|
int number ;
|
|
char *intro ;
|
|
} ;
|
|
|
|
|
|
#define GAME_INTRO 0
|
|
#define GAME_RUNNING 1
|
|
#define GAME_DEBRIEF 2
|
|
#define GAME_START_OF_DAY 3
|
|
|