LeviLamina
Loading...
Searching...
No Matches
Xoroshiro128PlusPlus.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5class Xoroshiro128PlusPlus {
6public:
7 // member variables
8 // NOLINTBEGIN
11 // NOLINTEND
12
13public:
14 // prevent constructor by default
15 Xoroshiro128PlusPlus& operator=(Xoroshiro128PlusPlus const&);
16 Xoroshiro128PlusPlus(Xoroshiro128PlusPlus const&);
17 Xoroshiro128PlusPlus();
18
19public:
20 // member functions
21 // NOLINTBEGIN
22 MCNAPI int64 nextLong();
23 // NOLINTEND
24};
MCAPI int64 nextLong()
Definition Alias.h:14