blob: 623081f72dfc006b7254e897e2744a9d77669dab (
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 GParamListObjectNest : public GParamListObject {
public:
GParamListObjectNest();
const char* getName() const override { return "Nest"; }
agl::utl::Parameter<sead::SafeString> mCreateActor;
};
KSYS_CHECK_SIZE_NX150(GParamListObjectNest, 0x60);
inline GParamListObjectNest::GParamListObjectNest() {
auto* const obj = &mObj;
mCreateActor.init("", "CreateActor", "", obj);
}
} // namespace ksys::res
|