LeviLamina
Loading...
Searching...
No Matches
ConstantInt.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/level/levelgen/v2/providers/IntProviderType.h"
7
8// auto generated forward declare list
9// clang-format off
10class IRandom;
11struct IntProvider;
12// clang-format on
13
15public:
16 // member variables
17 // NOLINTBEGIN
18 ::ll::TypedStorage<4, 4, int> mConstant;
19 // NOLINTEND
20
21public:
22 // virtual functions
23 // NOLINTBEGIN
24 virtual int sample(::IRandom&) const /*override*/;
25
26 virtual int maxValue() const /*override*/;
27
28 virtual int minValue() const /*override*/;
29 // NOLINTEND
30
31public:
32 // static functions
33 // NOLINTBEGIN
34 MCAPI static ::IntProvider of(int value);
35 // NOLINTEND
36
37public:
38 // virtual function thunks
39 // NOLINTBEGIN
40 MCFOLD int $sample(::IRandom&) const;
41
42 MCFOLD int $maxValue() const;
43
44 MCFOLD int $minValue() const;
45
46
47 // NOLINTEND
48
49public:
50 // vftables
51 // NOLINTBEGIN
52 MCNAPI static void** $vftable();
53 // NOLINTEND
54};
Definition IRandom.h:10
Definition ConstantInt.h:14
static MCAPI void ** $vftable()
Definition IntProviderType.h:10
Definition IntProvider.h:15