summaryrefslogtreecommitdiff
path: root/src/KingSystem/Resource/GeneralParamList/resGParamListObjectBindActor.h
blob: 1b23532baae2499b6671215167c1837be7723b7b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#pragma once

#include <utility/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