LeviLamina
Loading...
Searching...
No Matches
ILevelRandom.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7class IRandom;
8class Random;
9// clang-format on
10
12public:
13 // virtual functions
14 // NOLINTBEGIN
15 virtual ~ILevelRandom() = default;
16
17 virtual ::IRandom& getIRandom() = 0;
18
19 virtual ::Random& getRandom() = 0;
20
21 virtual ::Random& getThreadRandom() = 0;
22 // NOLINTEND
23
24public:
25 // virtual function thunks
26 // NOLINTBEGIN
27
28 // NOLINTEND
29};
Definition ILevelRandom.h:11
Definition IRandom.h:13
Definition Random.h:10