Files
botw/src/KingSystem/Resource/GeneralParamList/resGParamListObjectSystem.h
T
2020-09-19 22:06:52 +02:00

27 lines
744 B
C++

#pragma once
#include <agl/Utils/aglParameter.h>
#include "KingSystem/Resource/GeneralParamList/resGParamListObject.h"
#include "KingSystem/Utils/Types.h"
namespace ksys::res {
class GParamListObjectSystem : public GParamListObject {
public:
GParamListObjectSystem();
const char* getName() const override { return "System"; }
agl::utl::Parameter<sead::SafeString> mSameGroupActorName;
agl::utl::Parameter<bool> mIsGetItemSelf;
};
KSYS_CHECK_SIZE_NX150(GParamListObjectSystem, 0x80);
inline GParamListObjectSystem::GParamListObjectSystem() {
auto* const obj = &mObj;
mSameGroupActorName.init("", "SameGroupActorName", "", obj);
mIsGetItemSelf.init(false, "IsGetItemSelf", "", obj);
}
} // namespace ksys::res