LeviLamina
Loading...
Searching...
No Matches
BiomeStringList.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/platform/Result.h"
7
8// auto generated forward declare list
9// clang-format off
11// clang-format on
12
14public:
15 // BiomeStringList inner types define
16 using BiomeStringIndex = ushort;
17
18public:
19 // member variables
20 // NOLINTBEGIN
21 ::ll::TypedStorage<8, 64, ::std::unordered_map<::std::string, ushort>> mAllStrings;
22 ::ll::TypedStorage<8, 24, ::std::vector<::std::string>> mStrings;
23 // NOLINTEND
24
25public:
26 // prevent constructor by default
27 BiomeStringList& operator=(BiomeStringList const&);
30
31public:
32 // member functions
33 // NOLINTBEGIN
35
36 MCAPI ~BiomeStringList();
37 // NOLINTEND
38
39public:
40 // static functions
41 // NOLINTBEGIN
42 MCAPI static ::Bedrock::Result<::BiomeStringList> read(::ReadOnlyBinaryStream& stream);
43 // NOLINTEND
44
45public:
46 // constructor thunks
47 // NOLINTBEGIN
48 MCAPI void* $ctor(::BiomeStringList&&);
49 // NOLINTEND
50
51public:
52 // destructor thunk
53 // NOLINTBEGIN
54 MCAPI void $dtor();
55 // NOLINTEND
56};
Definition ReadOnlyBinaryStream.h:8
Definition BiomeStringList.h:13