LeviLamina
Loading...
Searching...
No Matches
DlcBatchCacheModel.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/core/utility/NonOwnerPointer.h"
7
8// auto generated forward declare list
9// clang-format off
10class DlcBatchModel;
11class DlcId;
13class IMinecraftGame;
14class IStoreCatalogRepository;
15// clang-format on
16
18public:
19 // member variables
20 // NOLINTBEGIN
21 ::ll::TypedStorage<8, 24, ::std::vector<::DlcBatchModel>> mDlcBatchList;
22 ::ll::TypedStorage<8, 24, ::Bedrock::NotNullNonOwnerPtr<::IContentAcquisition>> mContentAcquisition;
23 ::ll::TypedStorage<8, 24, ::Bedrock::NotNullNonOwnerPtr<::IStoreCatalogRepository>> mStoreCatalog;
24 // NOLINTEND
25
26public:
27 // prevent constructor by default
28 DlcBatchCacheModel();
29
30public:
31 // member functions
32 // NOLINTBEGIN
33 MCAPI explicit DlcBatchCacheModel(::IMinecraftGame& minecraft);
34
35 MCAPI DlcBatchCacheModel(
36 ::Bedrock::NotNullNonOwnerPtr<::IContentAcquisition> contentAcquisition,
37 ::Bedrock::NotNullNonOwnerPtr<::IStoreCatalogRepository> storeCatalog
38 );
39
40 MCAPI ::DlcBatchModel& getDlcBatchModel(::std::vector<::DlcId> const& dlcIds);
41
42 MCAPI ::DlcBatchModel& getDlcBatchModel(::std::string const& productId);
43
44 MCAPI ::DlcBatchModel& getDlcBatchModel(::std::vector<::std::string> const& productIds);
45
46 MCAPI ~DlcBatchCacheModel();
47 // NOLINTEND
48
49public:
50 // constructor thunks
51 // NOLINTBEGIN
52 MCAPI void* $ctor(::IMinecraftGame& minecraft);
53
54 MCAPI void* $ctor(
55 ::Bedrock::NotNullNonOwnerPtr<::IContentAcquisition> contentAcquisition,
56 ::Bedrock::NotNullNonOwnerPtr<::IStoreCatalogRepository> storeCatalog
57 );
58 // NOLINTEND
59
60public:
61 // destructor thunk
62 // NOLINTBEGIN
63 MCAPI void $dtor();
64 // NOLINTEND
65};
Definition DlcBatchCacheModel.h:5
Definition DlcBatchModel.h:5
Definition DlcId.h:5
Definition IContentAcquisition.h:5
Definition IMinecraftGame.h:5