Merge branch 'master' into jgrpp
# Conflicts: # src/core/bitmath_func.cpp # src/core/bitmath_func.hpp # src/core/geometry_type.hpp # src/game/game_text.hpp # src/graph_gui.cpp # src/pathfinder/npf/npf.cpp # src/script/api/script_text.cpp # src/spritecache.cpp # src/track_func.h
This commit is contained in:
@@ -12,6 +12,7 @@
|
||||
|
||||
struct StringParam {
|
||||
enum ParamType : uint8_t {
|
||||
UNUSED,
|
||||
RAW_STRING,
|
||||
STRING,
|
||||
OTHER
|
||||
@@ -19,8 +20,9 @@ struct StringParam {
|
||||
|
||||
ParamType type;
|
||||
uint8_t consumes;
|
||||
const char *cmd;
|
||||
|
||||
StringParam(ParamType type, uint8_t consumes) : type(type), consumes(consumes) {}
|
||||
StringParam(ParamType type, uint8_t consumes, const char *cmd) : type(type), consumes(consumes), cmd(cmd) {}
|
||||
};
|
||||
using StringParams = std::vector<StringParam>;
|
||||
using StringParamsList = std::vector<StringParams>;
|
||||
|
Reference in New Issue
Block a user