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

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

namespace ksys::res {

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

    agl::utl::Parameter<s32> mRupeeValue;
};
KSYS_CHECK_SIZE_NX150(GParamListObjectRupee, 0x58);

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

    mRupeeValue.init(1, "RupeeValue", "", obj);
}

}  // namespace ksys::res