blob: 077cf5395cd4708115bb4e961eaa9bca4c77ffaf (
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 GParamListObjectAnimalFollowOffset : public GParamListObject {
public:
GParamListObjectAnimalFollowOffset();
const char* getName() const override { return "AnimalFollowOffset"; }
agl::utl::Parameter<sead::Vector3f> mEatLocalOffset;
};
KSYS_CHECK_SIZE_NX150(GParamListObjectAnimalFollowOffset, 0x60);
inline GParamListObjectAnimalFollowOffset::GParamListObjectAnimalFollowOffset() {
auto* const obj = &mObj;
mEatLocalOffset.init({0.0, 0.0, 0.0}, "EatLocalOffset", "", obj);
}
} // namespace ksys::res
|