summaryrefslogtreecommitdiff
path: root/src/KingSystem/Resource/GeneralParamList/resGParamListObjectEatTarget.h
blob: 2dc5a4101cac57c5edb710b3c9cbda05d799a735 (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
27
28
29
30
31
32
33
34
#pragma once

#include <utility/aglParameter.h>
#include "KingSystem/Resource/GeneralParamList/resGParamListObject.h"
#include "KingSystem/Utils/Types.h"

namespace ksys::res {

class GParamListObjectEatTarget : public GParamListObject {
public:
    GParamListObjectEatTarget();
    const char* getName() const override { return "EatTarget"; }

    agl::utl::Parameter<sead::SafeString> mFavoriteEatActorNames;
    agl::utl::Parameter<sead::SafeString> mFavoriteEatActorTags;
    agl::utl::Parameter<sead::SafeString> mEatActorNames;
    agl::utl::Parameter<sead::SafeString> mEatActorNames2;
    agl::utl::Parameter<sead::SafeString> mEatActorNames3;
    agl::utl::Parameter<sead::SafeString> mEatActorTags;
};
KSYS_CHECK_SIZE_NX150(GParamListObjectEatTarget, 0x128);

inline GParamListObjectEatTarget::GParamListObjectEatTarget() {
    auto* const obj = &mObj;

    mFavoriteEatActorNames.init("", "FavoriteEatActorNames", "", obj);
    mFavoriteEatActorTags.init("", "FavoriteEatActorTags", "", obj);
    mEatActorNames.init("", "EatActorNames", "", obj);
    mEatActorNames2.init("", "EatActorNames2", "", obj);
    mEatActorNames3.init("", "EatActorNames3", "", obj);
    mEatActorTags.init("", "EatActorTags", "", obj);
}

}  // namespace ksys::res