mirror of
https://github.com/zeldaret/botw
synced 2026-06-01 17:57:31 -04:00
ksys/res: Implement GParamList System + General
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
#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
|
||||
Reference in New Issue
Block a user