LeviLamina
Loading...
Searching...
No Matches
ModelParent.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/core/string/HashedString.h"
7#include "mc/util/JsonValueHierarchy.h"
8
9// auto generated forward declare list
10// clang-format off
12class SemVersion;
13namespace Json { class Value; }
14// clang-format on
15
16struct ModelParent {
17public:
18 // member variables
19 // NOLINTBEGIN
20 ::ll::TypedStorage<8, 32, ::std::string> mSourceFilePathWithExtension;
21 ::ll::TypedStorage<8, 48, ::HashedString> mParentName;
22 ::ll::TypedStorage<8, 24, ::JsonValueHierarchy> mJson;
23 ::ll::TypedStorage<1, 1, bool> mIsFromBaseGamePack;
24 // NOLINTEND
25
26public:
27 // prevent constructor by default
28 ModelParent();
29
30public:
31 // member functions
32 // NOLINTBEGIN
33 MCAPI ModelParent(
34 ::HashedString const& parentName,
35 ::Json::Value& value,
36 ::SemVersion const& fileVersion,
37 ::MinEngineVersion const& minEngineVersion,
38 ::std::string const& sourceFilePathWithExtension,
39 bool isFromBaseGamePack
40 );
41
42 MCAPI ~ModelParent();
43 // NOLINTEND
44
45public:
46 // constructor thunks
47 // NOLINTBEGIN
48 MCAPI void* $ctor(
49 ::HashedString const& parentName,
50 ::Json::Value& value,
51 ::SemVersion const& fileVersion,
52 ::MinEngineVersion const& minEngineVersion,
53 ::std::string const& sourceFilePathWithExtension,
54 bool isFromBaseGamePack
55 );
56 // NOLINTEND
57
58public:
59 // destructor thunk
60 // NOLINTBEGIN
61 MCAPI void $dtor();
62 // NOLINTEND
63};
Definition Value.h:16
Definition MinEngineVersion.h:10
Definition SemVersion.h:15
Definition ModelParent.h:5