LeviLamina
Loading...
Searching...
No Matches
FontHandle.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/core/utility/EnableNonOwnerReferences.h"
7#include "mc/deps/core/utility/NonOwnerPointer.h"
8
9// auto generated forward declare list
10// clang-format off
11class Font;
12class FontRepository;
13// clang-format on
14
16public:
17 // member variables
18 // NOLINTBEGIN
19 ::ll::TypedStorage<8, 24, ::Bedrock::NonOwnerPointer<::FontRepository>> mFontRepository;
20 ::ll::TypedStorage<8, 16, ::std::shared_ptr<::Font>> mDefaultFont;
21 ::ll::TypedStorage<8, 8, uint64> mFontId;
22 ::ll::TypedStorage<1, 1, bool> mIsDummyHandle;
23 // NOLINTEND
24
25public:
26 // prevent constructor by default
27 FontHandle();
28
29public:
30 // virtual functions
31 // NOLINTBEGIN
32 virtual ~FontHandle() /*override*/;
33 // NOLINTEND
34
35public:
36 // member functions
37 // NOLINTBEGIN
38 MCAPI FontHandle(::FontHandle const&);
39
40 MCAPI FontHandle(::FontHandle defaultFont, ::std::string const& newFontAlias);
41
42 MCAPI FontHandle(
43 ::std::shared_ptr<::Font> defaultFont,
44 uint64 fontId,
45 ::Bedrock::NotNullNonOwnerPtr<::FontRepository> fontRepository
46 );
47
48 MCAPI ::FontHandle& operator=(::FontHandle const&);
49 // NOLINTEND
50
51public:
52 // static variables
53 // NOLINTBEGIN
54 MCAPI static ::FontHandle& INVALID_FONT_HANDLE();
55
56 MCAPI static ::FontHandle& TEST_FONT_HANDLE();
57 // NOLINTEND
58
59public:
60 // constructor thunks
61 // NOLINTBEGIN
62 MCAPI void* $ctor(::FontHandle const&);
63
64 MCAPI void* $ctor(::FontHandle defaultFont, ::std::string const& newFontAlias);
65
66 MCAPI void* $ctor(
67 ::std::shared_ptr<::Font> defaultFont,
68 uint64 fontId,
69 ::Bedrock::NotNullNonOwnerPtr<::FontRepository> fontRepository
70 );
71 // NOLINTEND
72
73public:
74 // destructor thunk
75 // NOLINTBEGIN
76 MCAPI void $dtor();
77 // NOLINTEND
78
79public:
80 // vftables
81 // NOLINTBEGIN
82 MCNAPI static void** $vftable();
83 // NOLINTEND
84};
Definition EnableNonOwnerReferences.h:7
Definition FontHandle.h:5
static MCAPI void ** $vftable()
Definition FontRepository.h:5
Definition Font.h:5