LeviLamina
Loading...
Searching...
No Matches
ActorInfoRegistry.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7struct ActorInfo;
8// clang-format on
9
11public:
12 // member variables
13 // NOLINTBEGIN
17 // NOLINTEND
18
19public:
20 // prevent constructor by default
21 ActorInfoRegistry& operator=(ActorInfoRegistry const&);
23
24public:
25 // member functions
26 // NOLINTBEGIN
27 MCAPI ActorInfoRegistry();
28
29 MCAPI uint getActorInfoId(uint64 const& name) const;
30
31 MCAPI uint getActorInfoId(::std::string const& name) const;
32
33 MCAPI bool isSpawnEggAvailable(::std::string identifier);
34
35 MCAPI void registerActorInfo(::ActorInfo const& info);
36 // NOLINTEND
37
38public:
39 // constructor thunks
40 // NOLINTBEGIN
41 MCAPI void* $ctor();
42 // NOLINTEND
43};
Definition ActorInfoRegistry.h:10
Definition ActorInfo.h:10
Definition Alias.h:14