blobwarsAttrition/src/main.h

44 lines
1.2 KiB
C
Raw Normal View History

2018-01-21 10:31:38 +01:00
/*
Copyright (C) 2018 Parallel Realities
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 2
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, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#include "common.h"
#include <time.h>
extern void cleanup(void);
extern void initSDL(void);
extern void initGameSystem(void);
extern void handleInput(void);
extern void prepareScene(void);
extern void presentScene(void);
2018-01-28 13:01:39 +01:00
extern void initAtlasTest(void);
2018-02-03 14:07:56 +01:00
extern void init18N(int argc, char *argv[]);
extern void initLookups(void);
2018-02-14 20:12:29 +01:00
extern void awardTrophies(void);
2018-02-14 23:31:42 +01:00
extern void doTrophyAlerts(void);
extern void drawTrophyAlert(void);
2018-01-21 10:31:38 +01:00
App app;
2018-01-21 12:12:49 +01:00
Camera camera;
2018-01-21 10:31:38 +01:00
Colors colors;
Dev dev;
2018-01-24 23:15:24 +01:00
Entity *self;
2018-01-21 10:31:38 +01:00
Game game;
2018-01-21 12:12:49 +01:00
World world;