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