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&);
29
30public:
31 // member functions
32 // NOLINTBEGIN
33 MCAPI BiomeStringList();
34
36
37 MCAPI ~BiomeStringList();
38 // NOLINTEND
39
40public:
41 // static functions
42 // NOLINTBEGIN
43 MCAPI static ::Bedrock::Result<::BiomeStringList> read(::ReadOnlyBinaryStream& stream);
44 // NOLINTEND
45
46public:
47 // constructor thunks
48 // NOLINTBEGIN
49 MCAPI void* $ctor();
50
51 MCAPI void* $ctor(::BiomeStringList&&);
52 // NOLINTEND
53
54public:
55 // destructor thunk
56 // NOLINTBEGIN
57 MCAPI void $dtor();
58 // NOLINTEND
59};
Definition ReadOnlyBinaryStream.h:8
Definition BiomeStringList.h:13