helapordo 1.4.12
Loading...
Searching...
No Matches
helapordo.h
Go to the documentation of this file.
1// jgabaut @ github.com/jgabaut
2// SPDX-License-Identifier: GPL-3.0-only
3/*
4 Copyright (C) 2022-2024 jgabaut
5
6 This program is free software: you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation, version 3 of the License.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with this program. If not, see <https://www.gnu.org/licenses/>.
17*/
18
32#ifndef HELAPORDO_H
33#if defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 201112L) //We need C11
34#define HELAPORDO_H
35
36#include "../utils/rooms.h"
37#include "../core/game_lore.h"
38#include "../ser/ser_core.h"
39
40/*
41void register_counter_callback(int index, callback_void_t ptr, Fighter*);
42*/
43
44void gameloop(int argc, char **argv);
45
46#else
47#error "This code requires C11.\n _Alignof\n"
48#endif
49#endif //HELAPORDO_H
void gameloop(int argc, char **argv)
Takes a integer and a string array (possibly from main).
Definition helapordo.c:52