LeviLamina
Loading...
Searching...
No Matches
PhotoItemSavedDataCollection.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/legacy/ActorUniqueID.h"
7
8// auto generated forward declare list
9// clang-format off
10class CompoundTag;
12// clang-format on
13
14class PhotoItemSavedDataCollection {
15public:
16 // member variables
17 // NOLINTBEGIN
18 ::ll::TypedStorage<8, 64, ::std::unordered_map<::ActorUniqueID, ::std::unique_ptr<::PhotoItemSavedData>>>
19 mPhotoData;
20 // NOLINTEND
21
22public:
23 // member functions
24 // NOLINTBEGIN
25 MCAPI PhotoItemSavedDataCollection();
26
27#ifdef LL_PLAT_C
28 MCAPI ::PhotoItemSavedData*
29 _loadPhotoData(::ActorUniqueID const& id, ::ActorUniqueID const& owner, ::std::string const& name);
30
31 MCAPI ::PhotoItemSavedData* getPhotoSavedData(::CompoundTag const& instance);
32#endif
33
34 MCAPI ~PhotoItemSavedDataCollection();
35 // NOLINTEND
36
37public:
38 // constructor thunks
39 // NOLINTBEGIN
40 MCAPI void* $ctor();
41 // NOLINTEND
42
43public:
44 // destructor thunk
45 // NOLINTBEGIN
46 MCAPI void $dtor();
47 // NOLINTEND
48};
Definition CompoundTag.h:23
Definition PhotoItemSavedData.h:8
Definition ActorUniqueID.h:10