LeviLamina
Loading...
Searching...
No Matches
ContentTierManager.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/resources/IContentTierManager.h"
7
8// auto generated forward declare list
9// clang-format off
10class ContentTierInfo;
11// clang-format on
12
13class ContentTierManager : public ::IContentTierManager {
14public:
15 // member variables
16 // NOLINTBEGIN
19 // NOLINTEND
20
21public:
22 // prevent constructor by default
23 ContentTierManager& operator=(ContentTierManager const&);
24 ContentTierManager(ContentTierManager const&);
25 ContentTierManager();
26
27public:
28 // virtual functions
29 // NOLINTBEGIN
30 virtual ::ContentTierInfo getContentTierInfo() const /*override*/;
31
32 virtual bool shouldDeviceAllowAnimation() const /*override*/;
33 // NOLINTEND
34
35public:
36 // member functions
37 // NOLINTBEGIN
38 MCNAPI explicit ContentTierManager(::std::function<bool()> isHardwareRayTracingCompatible);
39
40 MCNAPI void _calculateMemoryTier();
41 // NOLINTEND
42
43public:
44 // constructor thunks
45 // NOLINTBEGIN
46 MCNAPI void* $ctor(::std::function<bool()> isHardwareRayTracingCompatible);
47 // NOLINTEND
48
49public:
50 // virtual function thunks
51 // NOLINTBEGIN
52 MCNAPI ::ContentTierInfo $getContentTierInfo() const;
53
54 MCNAPI bool $shouldDeviceAllowAnimation() const;
55
56
57 // NOLINTEND
58
59public:
60 // vftables
61 // NOLINTBEGIN
62 MCNAPI static void** $vftable();
63 // NOLINTEND
64};
Definition ContentTierInfo.h:12
MCAPI void _calculateMemoryTier()
MCAPI bool $shouldDeviceAllowAnimation() const
static MCAPI void ** $vftable()
MCAPI::ContentTierInfo $getContentTierInfo() const
MCAPI ContentTierManager(::std::function< bool()> isHardwareRayTracingCompatible)
MCAPI void * $ctor(::std::function< bool()> isHardwareRayTracingCompatible)
Definition IContentTierManager.h:13
Definition Alias.h:14