mirror of
https://github.com/SMGCommunity/Petari.git
synced 2024-12-02 10:36:39 +00:00
MR::isValidInfo()
This commit is contained in:
parent
2795a911ce
commit
bf51c80d37
@ -9,6 +9,7 @@ bool getJMapInfoArgNoInit(const JMapInfoIter &, const char *, bool *);
|
||||
|
||||
namespace MR
|
||||
{
|
||||
bool isValidInfo(const JMapInfoIter &);
|
||||
bool getJMapInfoArg0NoInit(const JMapInfoIter &, s32 *);
|
||||
bool getJMapInfoArg0NoInit(const JMapInfoIter &, f32 *);
|
||||
bool getJMapInfoArg0NoInit(const JMapInfoIter &, bool *);
|
||||
|
@ -32,6 +32,11 @@ bool getJMapInfoArgNoInit(const JMapInfoIter &iter, const char *name, s32 *out)
|
||||
|
||||
namespace MR
|
||||
{
|
||||
bool isValidInfo(const JMapInfoIter &iter)
|
||||
{
|
||||
return iter.isValid();
|
||||
}
|
||||
|
||||
bool getJMapInfoArg0NoInit(const JMapInfoIter &iter, s32 *out)
|
||||
{
|
||||
return getJMapInfoArgNoInit(iter, "Obj_arg0", out);
|
||||
|
Loading…
Reference in New Issue
Block a user