LeviLamina
Loading...
Searching...
No Matches
IntProvider.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;
11// clang-format on
12
14public:
15 // member variables
16 // NOLINTBEGIN
18 // NOLINTEND
19
20public:
21 // prevent constructor by default
22 IntProvider& operator=(IntProvider const&);
25
26public:
27 // virtual functions
28 // NOLINTBEGIN
29 // vIndex: 1
30 virtual int sample(::IRandom& random) const /*override*/;
31
32 // vIndex: 2
33 virtual int maxValue() const /*override*/;
34
35 // vIndex: 3
36 virtual int minValue() const /*override*/;
37
38 // vIndex: 0
39 virtual ~IntProvider() /*override*/;
40 // NOLINTEND
41
42public:
43 // member functions
44 // NOLINTBEGIN
45 MCAPI ::IntProvider& operator=(::IntProvider&&);
46 // NOLINTEND
47
48public:
49 // destructor thunk
50 // NOLINTBEGIN
51 MCAPI void $dtor();
52 // NOLINTEND
53
54public:
55 // virtual function thunks
56 // NOLINTBEGIN
57 MCAPI int $sample(::IRandom& random) const;
58
59 MCAPI int $maxValue() const;
60
61 MCAPI int $minValue() const;
62 // NOLINTEND
63
64public:
65 // vftables
66 // NOLINTBEGIN
67 MCAPI static void** $vftable();
68 // NOLINTEND
69};
Definition IRandom.h:10
Definition IntProviderType.h:10
Definition IntProvider.h:13
Definition Alias.h:14