LeviLamina
Loading...
Searching...
No Matches
IWorldTemplateManager.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/core/utility/EnableNonOwnerReferences.h"
7
8// auto generated forward declare list
9// clang-format off
11struct PackIdVersion;
13namespace Bedrock::PubSub { class Subscription; }
14namespace mce { class UUID; }
15// clang-format on
16
18public:
19 // virtual functions
20 // NOLINTBEGIN
21 // vIndex: 0
22 virtual ~IWorldTemplateManager() /*override*/;
23
24 // vIndex: 1
25 virtual ::WorldTemplateInfo const* findInstalledWorldTemplateByUUID(::std::vector<::mce::UUID> const&) const = 0;
26
27 // vIndex: 2
28 virtual ::Bedrock::PubSub::Subscription
29 registerModifiedCallback(::std::function<void(::std::pair<::std::string, bool> const&)>) = 0;
30
31 // vIndex: 3
32 virtual ::std::vector<::std::unique_ptr<::WorldTemplateInfo const>> const& getLocalTemplates() const = 0;
33
34 // vIndex: 4
35 virtual void populateWorldTemplates() = 0;
36
37 // vIndex: 5
38 virtual uint64 getWorldTemplateSize() const = 0;
39
40 // vIndex: 6
41 virtual ::WorldTemplateInfo const& getWorldTemplateAtIndex(int) const = 0;
42
43 // vIndex: 7
44 virtual void deleteWorldTemplateAndFiles(::PackIdVersion const&) = 0;
45
46 // vIndex: 8
47 virtual ::WorldTemplateInfo const* findInstalledWorldTemplate(::PackIdVersion const&) const = 0;
48
49 // vIndex: 9
50 virtual ::WorldTemplateCollectionView createView(::mce::UUID const&) const = 0;
51
52 // vIndex: 10
53 virtual void forEachWorldTemplate(::std::function<void(::WorldTemplateInfo const&)> const&) const = 0;
54
55 // vIndex: 11
56 virtual bool isInitialized() const = 0;
57 // NOLINTEND
58
59public:
60 // destructor thunk
61 // NOLINTBEGIN
62 MCNAPI void $dtor();
63 // NOLINTEND
64
65public:
66 // virtual function thunks
67 // NOLINTBEGIN
68
69 // NOLINTEND
70};
Definition EnableNonOwnerReferences.h:7
Definition IWorldTemplateManager.h:17
Definition WorldTemplateCollectionView.h:13
Definition UUID.h:7
Definition PackIdVersion.h:10
Definition WorldTemplateInfo.h:15