LeviLamina
Loading...
Searching...
No Matches
SimplePositionalRandomFactory.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/core/math/IPositionalRandomFactory.h"
7
8// auto generated forward declare list
9// clang-format off
10class BlockPos;
11class IRandom;
12// clang-format on
13
15public:
16 // member variables
17 // NOLINTBEGIN
19 // NOLINTEND
20
21public:
22 // prevent constructor by default
26
27public:
28 // virtual functions
29 // NOLINTBEGIN
30 // vIndex: 1
31 virtual ::std::unique_ptr<::IRandom> forBlockPos(::BlockPos const& blockPos) const /*override*/;
32
33 // vIndex: 2
34 virtual ::std::unique_ptr<::IRandom> forString(::std::string const& string) const /*override*/;
35
36 // vIndex: 0
37 virtual ~SimplePositionalRandomFactory() /*override*/ = default;
38 // NOLINTEND
39
40public:
41 // virtual function thunks
42 // NOLINTBEGIN
43 MCNAPI ::std::unique_ptr<::IRandom> $forBlockPos(::BlockPos const& blockPos) const;
44
45 MCNAPI ::std::unique_ptr<::IRandom> $forString(::std::string const& string) const;
46 // NOLINTEND
47
48public:
49 // vftables
50 // NOLINTBEGIN
51 MCNAPI static void** $vftable();
52 // NOLINTEND
53};
Definition BlockPos.h:18
Definition IPositionalRandomFactory.h:11
Definition IRandom.h:10
Definition SimplePositionalRandomFactory.h:14
static MCAPI void ** $vftable()
MCAPI ::std::unique_ptr<::IRandom > $forString(::std::string const &string) const
MCAPI ::std::unique_ptr<::IRandom > $forBlockPos(::BlockPos const &blockPos) const
Definition Alias.h:14