LeviLamina
Loading...
Searching...
No Matches
Timeline.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
8// clang-format on
9
10class Timeline {
11public:
12 // Timeline inner types declare
13 // clang-format off
14 class Builder;
15 // clang-format on
16
17 // Timeline inner types define
18 class Builder {
19 public:
20 // member variables
21 // NOLINTBEGIN
27 // NOLINTEND
28
29 public:
30 // prevent constructor by default
31 Builder& operator=(Builder const&);
32 Builder(Builder const&);
33 Builder();
34 };
35
36public:
37 // member variables
38 // NOLINTBEGIN
48 // NOLINTEND
49
50public:
51 // prevent constructor by default
52 Timeline& operator=(Timeline const&);
53 Timeline(Timeline const&);
54 Timeline();
55
56public:
57 // virtual functions
58 // NOLINTBEGIN
59 virtual ~Timeline() = default;
60
61 virtual int _getCurrentTickTime(::WorldClockRegistry const&) const;
62 // NOLINTEND
63
64public:
65 // virtual function thunks
66 // NOLINTBEGIN
67
68 // NOLINTEND
69};
Definition Timeline.h:18
Definition WorldClockRegistry.h:17
Definition Alias.h:14