mirror of
https://gitlab.com/dosowisko.net/libsuperderpy.git
synced 2025-01-10 00:38:00 +01:00
38 lines
1.3 KiB
C
38 lines
1.3 KiB
C
|
/*
|
||
|
* Copyright (c) Sebastian Krzyszkowiak <dos@dosowisko.net>
|
||
|
*
|
||
|
* 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
|
||
|
*/
|
||
|
|
||
|
#ifndef LIBSUPERDERPY_INTERNAL_H
|
||
|
#define LIBSUPERDERPY_INTERNAL_H
|
||
|
|
||
|
#include <allegro5/allegro.h>
|
||
|
#include <allegro5/allegro_font.h>
|
||
|
#include "libsuperderpy.h"
|
||
|
|
||
|
void DrawGamestates(struct Game *game);
|
||
|
void LogicGamestates(struct Game *game);
|
||
|
void EventGamestates(struct Game *game, ALLEGRO_EVENT *ev);
|
||
|
void PauseGamestates(struct Game *game);
|
||
|
void ResumeGamestates(struct Game *game);
|
||
|
void DrawConsole(struct Game *game);
|
||
|
void Console_Load(struct Game *game);
|
||
|
void Console_Unload(struct Game *game);
|
||
|
void SetupViewport(struct Game *game);
|
||
|
void GamestateProgress(struct Game *game);
|
||
|
|
||
|
#endif
|