LeviLamina
Loading...
Searching...
No Matches
IPositionalRandomFactory.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7class BlockPos;
8class IRandom;
9// clang-format on
10
12public:
13 // virtual functions
14 // NOLINTBEGIN
15 // vIndex: 0
16 virtual ~IPositionalRandomFactory() = default;
17
18 // vIndex: 1
19 virtual ::std::unique_ptr<::IRandom> forBlockPos(::BlockPos const&) const = 0;
20
21 // vIndex: 2
22 virtual ::std::unique_ptr<::IRandom> forString(::std::string const&) const = 0;
23 // NOLINTEND
24
25public:
26 // destructor thunk
27 // NOLINTBEGIN
28
29 // NOLINTEND
30
31public:
32 // virtual function thunks
33 // NOLINTBEGIN
34
35 // NOLINTEND
36};
Definition BlockPos.h:18
Definition IPositionalRandomFactory.h:11
Definition IRandom.h:10