tbftss/src/main.h

55 lines
1.6 KiB
C
Raw Normal View History

2015-10-20 13:51:49 +02:00
/*
2016-02-21 16:50:27 +01:00
Copyright (C) 2015-2016 Parallel Realities
2015-10-20 13:51:49 +02: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 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 "SDL2/SDL.h"
#include "time.h"
#include "defs.h"
#include "structs.h"
extern void cleanup(void);
extern void initSDL(void);
extern void initGameSystem(void);
extern void initTitle(void);
extern void loadTestMission(char *filename);
2015-10-20 13:51:49 +02:00
extern void saveScreenshot(void);
2015-11-23 15:52:11 +01:00
extern void doMouseDown(SDL_MouseButtonEvent *event);
extern void doMouseUp(SDL_MouseButtonEvent *event);
extern void doMouseWheel(SDL_MouseWheelEvent *event);
extern void doMouseMotion(SDL_MouseMotionEvent *event);
2015-12-18 11:12:37 +01:00
extern void doDevKeys(void);
2015-12-20 17:13:35 +01:00
extern void expireTexts(int all);
extern void prepareScene(void);
extern void presentScene(void);
2016-02-23 08:19:31 +01:00
extern void doModalDialog(void);
extern void drawModalDialog(void);
2016-02-27 17:16:21 +01:00
extern void loadGame(void);
extern int fileExists(char *filename);
extern char *getSaveFilePath(char *filename);
extern void init18N(int argc, char *argv[]);
2015-10-20 13:51:49 +02:00
App app;
Colors colors;
Battle battle;
2015-12-18 11:12:37 +01:00
Dev dev;
Entity *self;
Entity *player;
2015-10-20 13:51:49 +02:00
Game game;