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
14public:
15 // member variables
16 // NOLINTBEGIN
19 // NOLINTEND
20
21public:
22 // prevent constructor by default
23 ContentTierManager& operator=(ContentTierManager const&);
26
27public:
28 // virtual functions
29 // NOLINTBEGIN
30 // vIndex: 1
31 virtual ::ContentTierInfo getContentTierInfo() const /*override*/;
32
33 // vIndex: 2
34 virtual bool shouldDeviceAllowAnimation() const /*override*/;
35
36 // vIndex: 0
37 virtual ~ContentTierManager() /*override*/;
38 // NOLINTEND
39
40public:
41 // member functions
42 // NOLINTBEGIN
43 MCNAPI explicit ContentTierManager(::std::function<bool()> isHardwareRayTracingCompatible);
44 // NOLINTEND
45
46public:
47 // constructor thunks
48 // NOLINTBEGIN
49 MCNAPI void* $ctor(::std::function<bool()> isHardwareRayTracingCompatible);
50 // NOLINTEND
51
52public:
53 // destructor thunk
54 // NOLINTBEGIN
55 MCNAPI void $dtor();
56 // NOLINTEND
57
58public:
59 // virtual function thunks
60 // NOLINTBEGIN
61 MCNAPI ::ContentTierInfo $getContentTierInfo() const;
62
63 MCNAPI bool $shouldDeviceAllowAnimation() const;
64 // NOLINTEND
65
66public:
67 // vftables
68 // NOLINTBEGIN
69 MCNAPI static void** $vftable();
70 // NOLINTEND
71};
Definition ContentTierInfo.h:5
Definition ContentTierManager.h:13
MCAPI bool $shouldDeviceAllowAnimation() const
static MCAPI void ** $vftable()
MCAPI void $dtor()
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