PGE Engine
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Macros Pages
smbx64_cnf_filedata.h
1 /*
2  * Platformer Game Engine by Wohlstand, a free platform for game making
3  * Copyright (c) 2014-2015 Vitaly Novichkov <admin@wohlnet.ru>
4  *
5  * This program is free software: you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation, either version 3 of the License, or
8  * any later version.
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 <http://www.gnu.org/licenses/>.
17  */
18 
19 #ifndef SMBX64_CNF_FILEDATA_H
20 #define SMBX64_CNF_FILEDATA_H
21 
22 #include "pge_file_lib_globs.h"
23 
25 {
27  unsigned int id;
28  unsigned int controllerType;
29  unsigned int k_up;
30  unsigned int k_down;
31  unsigned int k_left;
32  unsigned int k_right;
33  unsigned int k_run;
34  unsigned int k_jump;
35  unsigned int k_drop;
36  unsigned int k_pause;
37  unsigned int k_altjump;//>=19
38  unsigned int k_altrun;//>=19
39  unsigned int j_run;
40  unsigned int j_jump;
41  unsigned int j_drop;
42  unsigned int j_pause;
43  unsigned int j_altjump;//>=19
44  unsigned int j_altrun;//>=19
45 };
46 
48 {
50  bool fullScreen;//>=16
51  PGEVECTOR<SMBX64_ConfigPlayer> players;
52 
53  bool ReadFileValid;
54  PGESTRING ERROR_info;
55  PGESTRING ERROR_linedata;
56  int ERROR_linenum;
57 };
58 
59 #endif // SMBX64_CNF_FILEDATA_H
60 
#define PGESTRING
A macro which equal to std::string if PGE File Library built in the STL mode and equal to QString if ...
Definition: pge_file_lib_globs.h:97
Definition: smbx64_cnf_filedata.h:24
Definition: smbx64_cnf_filedata.h:47
Contains internal settings and references for PGE File Library.