liblcf
rpg_trooppage.h
Go to the documentation of this file.
1
/* !!!! GENERATED FILE - DO NOT EDIT !!!!
2
* --------------------------------------
3
*
4
* This file is part of liblcf. Copyright (c) 2020 liblcf authors.
5
* https://github.com/EasyRPG/liblcf - https://easyrpg.org
6
*
7
* liblcf is Free/Libre Open Source Software, released under the MIT License.
8
* For the full copyright and license information, please view the COPYING
9
* file that was distributed with this source code.
10
*/
11
12
#ifndef LCF_RPG_TROOPPAGE_H
13
#define LCF_RPG_TROOPPAGE_H
14
15
// Headers
16
#include <vector>
17
#include "
rpg_eventcommand.h
"
18
#include "
rpg_trooppagecondition.h
"
19
23
namespace
RPG
{
24
class
TroopPage
{
25
public
:
26
int
ID
= 0;
27
TroopPageCondition
condition
;
28
std::vector<EventCommand>
event_commands
;
29
};
30
31
inline
bool
operator==
(
const
TroopPage
& l,
const
TroopPage
& r) {
32
return
l.
condition
== r.
condition
33
&& l.
event_commands
== r.
event_commands
;
34
}
35
36
inline
bool
operator!=
(
const
TroopPage
& l,
const
TroopPage
& r) {
37
return
!(l == r);
38
}
39
}
40
41
#endif
RPG::TroopPageCondition
Definition:
rpg_trooppagecondition.h:23
RPG::TroopPage
Definition:
rpg_trooppage.h:24
RPG::TroopPage::event_commands
std::vector< EventCommand > event_commands
Definition:
rpg_trooppage.h:28
RPG::TroopPage::condition
TroopPageCondition condition
Definition:
rpg_trooppage.h:27
RPG::TroopPage::ID
int ID
Definition:
rpg_trooppage.h:26
RPG
Definition:
rpg_actor.h:26
RPG::operator==
bool operator==(const Actor &l, const Actor &r)
Definition:
rpg_actor.h:64
RPG::operator!=
bool operator!=(const Actor &l, const Actor &r)
Definition:
rpg_actor.h:98
rpg_eventcommand.h
rpg_trooppagecondition.h
src
generated
rpg_trooppage.h
Generated on Thu Jul 29 2021 00:00:00 for liblcf by
1.9.1