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
28
29 MCNAPI uint getActorInfoId(uint64 const& name) const;
30
31 MCNAPI uint getActorInfoId(::std::string const& name) const;
32
33 MCNAPI bool isSpawnEggAvailable(::std::string identifier);
34
35 MCNAPI void registerActorInfo(::ActorInfo const& info);
36 // NOLINTEND
37
38public:
39 // constructor thunks
40 // NOLINTBEGIN
41 MCNAPI void* $ctor();
42 // NOLINTEND
43};
Definition ActorInfoRegistry.h:10
MCAPI void * $ctor()
MCAPI uint getActorInfoId(uint64 const &name) const
MCAPI void registerActorInfo(::ActorInfo const &info)
MCAPI bool isSpawnEggAvailable(::std::string identifier)
MCAPI uint getActorInfoId(::std::string const &name) const
MCAPI ActorInfoRegistry()
Definition ActorInfo.h:10
Definition Alias.h:14