helapordo 1.4.12
Loading...
Searching...
No Matches
turn_op.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
19#ifndef TURNOP_H_
20#define TURNOP_H_
21
22#include "game_debug.h"
23#include "game_fight.h"
24#include "saves.h"
25#include "../ser/ser_core.h"
26
27OP_res turnOP(turnOption_OP op, turnOP_args * args, Koliseo * kls,
28 Koliseo_Temp * t_kls);
29#endif // TURNOP_H_
turnOption_OP
The different kinds of turnOption_OP.
Definition game_core.h:1960
OP_res
The different kinds of OP_res.
Definition game_core.h:2055
Holds arguments for a turnOption_OP.
Definition game_core.h:2090
OP_res turnOP(turnOption_OP op, turnOP_args *args, Koliseo *kls, Koliseo_Temp *t_kls)
Takes a turnOption_OP and a pointer to a turnOP_args struct.
Definition turn_op.c:33