summaryrefslogtreecommitdiff
path: root/src/KingSystem/Resource/GeneralParamList/resGParamListObjectSystem.h
blob: add5450a85e09b8224d1c1a5b4f36e0c4e9c020f (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
26
#pragma once

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