LeviLamina
Loading...
Searching...
No Matches
IScriptGeneratorStats.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7namespace Scripting { struct ContextId; }
8// clang-format on
9
11public:
12 // virtual functions
13 // NOLINTBEGIN
14 virtual ~IScriptGeneratorStats() = default;
15
16 virtual void bucketAddedForPlugin() = 0;
17
18 virtual void bucketRemovedForPlugin() = 0;
19
20 virtual void bucketRan(::Scripting::ContextId, uint64) = 0;
21
22 virtual void generatorRan(
24 uint,
25 uint,
26 ::std::chrono::microseconds,
27 ::std::chrono::microseconds,
28 ::std::chrono::microseconds
29 ) = 0;
30 // NOLINTEND
31
32public:
33 // virtual function thunks
34 // NOLINTBEGIN
35
36 // NOLINTEND
37};
Definition IScriptGeneratorStats.h:10
Definition ContextId.h:7