LeviLamina
Loading...
Searching...
No Matches
NpcDialogueStorage.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/server/commands/CurrentCmdVersion.h"
7
8// auto generated forward declare list
9// clang-format off
11struct NpcDialogueScene;
12// clang-format on
13
15public:
16 // member variables
17 // NOLINTBEGIN
18 ::ll::TypedStorage<8, 64, ::std::unordered_map<::std::string, ::NpcDialogueScene>> mScenes;
19 // NOLINTEND
20
21public:
22 // member functions
23 // NOLINTBEGIN
24 MCFOLD ::NpcDialogueScene const* getScene(::std::string const& sceneName) const;
25
26 MCFOLD ::NpcDialogueScene* getScene(::std::string const& sceneName);
27
28 MCAPI void init(::ResourcePackManager& resourcePackManager);
29
30 MCAPI bool parseFile(
31 ::std::string const& fileData,
32 ::std::string const& fileName,
33 ::CurrentCmdVersion const packCommandVersion
34 );
35 // NOLINTEND
36};
Definition NpcDialogueStorage.h:14
Definition ResourcePackManager.h:38
Definition NpcDialogueScene.h:8