LeviLamina
Loading...
Searching...
No Matches
IRandom.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
8// clang-format on
9
10class IRandom {
11public:
12 // virtual functions
13 // NOLINTBEGIN
14 // vIndex: 0
15 virtual ~IRandom();
16
17 // vIndex: 2
18 virtual int nextInt() = 0;
19
20 // vIndex: 1
21 virtual int nextInt(int) = 0;
22
23 // vIndex: 3
24 virtual int64 nextLong() = 0;
25
26 // vIndex: 4
27 virtual bool nextBoolean() = 0;
28
29 // vIndex: 5
30 virtual float nextFloat() = 0;
31
32 // vIndex: 6
33 virtual double nextDouble() = 0;
34
35 // vIndex: 7
36 virtual double nextGaussianDouble() = 0;
37
38 // vIndex: 8
39 virtual void consumeCount(uint) = 0;
40
41 // vIndex: 9
42 virtual ::std::unique_ptr<::IRandom> fork() = 0;
43
44 // vIndex: 10
45 virtual ::std::unique_ptr<::IPositionalRandomFactory> forkPositional();
46 // NOLINTEND
47
48public:
49 // destructor thunk
50 // NOLINTBEGIN
51 MCFOLD void $dtor();
52 // NOLINTEND
53
54public:
55 // virtual function thunks
56 // NOLINTBEGIN
57 MCFOLD ::std::unique_ptr<::IPositionalRandomFactory> $forkPositional();
58 // NOLINTEND
59
60public:
61 // vftables
62 // NOLINTBEGIN
63 MCAPI static void** $vftable();
64 // NOLINTEND
65};
Definition IPositionalRandomFactory.h:11
Definition IRandom.h:10