LeviLamina
Loading...
Searching...
No Matches
LevelRandom.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/level/ILevelRandom.h"
7
8// auto generated forward declare list
9// clang-format off
10class IRandom;
11class Random;
12// clang-format on
13
15public:
16 // member variables
17 // NOLINTBEGIN
19 // NOLINTEND
20
21public:
22 // prevent constructor by default
23 LevelRandom& operator=(LevelRandom const&);
26
27public:
28 // virtual functions
29 // NOLINTBEGIN
30 // vIndex: 1
31 virtual ::IRandom& getIRandom() /*override*/;
32
33 // vIndex: 2
34 virtual ::Random& getRandom() /*override*/;
35
36 // vIndex: 3
37 virtual ::Random& getThreadRandom() /*override*/;
38
39 // vIndex: 0
40 virtual ~LevelRandom() /*override*/ = default;
41 // NOLINTEND
42
43public:
44 // virtual function thunks
45 // NOLINTBEGIN
46 MCNAPI ::IRandom& $getIRandom();
47
48 MCNAPI ::Random& $getRandom();
49
50 MCNAPI ::Random& $getThreadRandom();
51 // NOLINTEND
52
53public:
54 // vftables
55 // NOLINTBEGIN
56 MCNAPI static void** $vftable();
57 // NOLINTEND
58};
Definition ILevelRandom.h:11
Definition IRandom.h:10
Definition LevelRandom.h:14
MCAPI::Random & $getThreadRandom()
MCAPI::Random & $getRandom()
static MCAPI void ** $vftable()
MCAPI::IRandom & $getIRandom()
Definition Random.h:11
Definition Alias.h:14