mirror of
https://github.com/zeldaret/botw
synced 2026-07-28 15:17:37 -04:00
ksys/res: Implement GParamList BindActor
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
#pragma once
|
||||
|
||||
#include <agl/Utils/aglParameter.h>
|
||||
#include "KingSystem/Resource/GeneralParamList/resGParamListObject.h"
|
||||
#include "KingSystem/Utils/Types.h"
|
||||
|
||||
namespace ksys::res {
|
||||
|
||||
class GParamListObjectBindActor : public GParamListObject {
|
||||
public:
|
||||
GParamListObjectBindActor();
|
||||
const char* getName() const override { return "BindActor"; }
|
||||
|
||||
agl::utl::Parameter<sead::SafeString> mBindActorName;
|
||||
agl::utl::Parameter<bool> mIsKeepSleep;
|
||||
};
|
||||
|
||||
inline GParamListObjectBindActor::GParamListObjectBindActor() {
|
||||
auto* const obj = &mObj;
|
||||
|
||||
mBindActorName.init("", "BindActorName", "", obj);
|
||||
mIsKeepSleep.init(false, "IsKeepSleep", "", obj);
|
||||
}
|
||||
|
||||
} // namespace ksys::res
|
||||
Reference in New Issue
Block a user