diff options
| author | Kevin <115616336+lag@users.noreply.github.com> | 2026-03-06 09:52:28 -0600 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-03-06 09:52:28 -0600 |
| commit | ea65542c1b63d7ee37025837bf205e55ace0c863 (patch) | |
| tree | 0ba5abdfdbf055d11bd85a460b98b51f2c9c9904 /Minecraft.Client/GuiComponent.h | |
| parent | 1755cd58bebf19053c6b4bbf9915b07237e1c14e (diff) | |
Add Chat / Pastes / Formatting (#682)
* Initial fixes for ContainerSetSlotPacket and CraftItemPacket
* Chat: paste, history, ยง formatting, 1-9 block when open (Windows64)
Made-with: Cursor
* static_cast refactor
Diffstat (limited to 'Minecraft.Client/GuiComponent.h')
| -rw-r--r-- | Minecraft.Client/GuiComponent.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Minecraft.Client/GuiComponent.h b/Minecraft.Client/GuiComponent.h index 7073db40..41496664 100644 --- a/Minecraft.Client/GuiComponent.h +++ b/Minecraft.Client/GuiComponent.h @@ -15,5 +15,6 @@ public: GuiComponent(); // 4J added void drawCenteredString(Font *font, const wstring& str, int x, int y, int color); void drawString(Font *font, const wstring& str, int x, int y, int color); + void drawStringLiteral(Font* font, const wstring& str, int x, int y, int color); void blit(int x, int y, int sx, int sy, int w, int h); }; |
