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 virtual ~IPositionalRandomFactory() = default;
16
17 virtual ::std::unique_ptr<::IRandom> forBlockPos(::BlockPos const&) const = 0;
18
19 virtual ::std::unique_ptr<::IRandom> forString(::std::string const&) const = 0;
20 // NOLINTEND
21
22public:
23 // virtual function thunks
24 // NOLINTBEGIN
25
26 // NOLINTEND
27};
Definition BlockPos.h:19
Definition IPositionalRandomFactory.h:11
Definition IRandom.h:13