LeviLamina
Loading...
Searching...
No Matches
DimensionBrightnessRamp.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
6public:
7 // member variables
8 // NOLINTBEGIN
9 ::ll::TypedStorage<4, 64, float[16]> mBrightnessRamp;
10 // NOLINTEND
11
12public:
13 // virtual functions
14 // NOLINTBEGIN
15 // vIndex: 0
16 virtual ~DimensionBrightnessRamp() = default;
17
18 // vIndex: 1
19 virtual void buildBrightnessRamp();
20
21 // vIndex: 2
22 virtual float getBaseAmbientValue() const;
23 // NOLINTEND
24
25public:
26 // destructor thunk
27 // NOLINTBEGIN
28
29 // NOLINTEND
30
31public:
32 // virtual function thunks
33 // NOLINTBEGIN
34 MCAPI void $buildBrightnessRamp();
35
36 MCFOLD float $getBaseAmbientValue() const;
37 // NOLINTEND
38
39public:
40 // vftables
41 // NOLINTBEGIN
42 MCAPI static void** $vftable();
43 // NOLINTEND
44};
Definition DimensionBrightnessRamp.h:5