-
Notifications
You must be signed in to change notification settings - Fork 172
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor/feat: ClickGUI Improvised code and correction of issues caus…
…ed by animations and loading
- Loading branch information
Showing
7 changed files
with
57 additions
and
55 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
43 changes: 33 additions & 10 deletions
43
...t/ccbluex/liquidbounce/ui/client/clickgui/style/styles/fdpdropdown/utils/normal/Screen.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,43 @@ | ||
/* | ||
* FDPClient Hacked Client | ||
* A free open source mixin-based injection hacked client for Minecraft using Minecraft Forge by LiquidBounce. | ||
* https://github.com/SkidderMC/FDPClient/ | ||
* Repository: https://github.com/SkidderMC/FDPClient/ | ||
*/ | ||
package net.ccbluex.liquidbounce.ui.client.clickgui.style.styles.fdpdropdown.utils.normal; | ||
|
||
public interface Screen extends Utils { | ||
package net.ccbluex.liquidbounce.ui.client.clickgui.style.styles.fdpdropdown.utils.normal | ||
|
||
void initGui(); | ||
|
||
void keyTyped(char typedChar, int keyCode); | ||
/** | ||
* Interface representing a basic screen structure in the client GUI. | ||
* It defines methods for handling initialization, input events, and rendering. | ||
*/ | ||
interface Screen { | ||
/** | ||
* Initializes the GUI components and prepares the screen for rendering. | ||
* | ||
*/ | ||
fun initGui() | ||
|
||
void drawScreen(int mouseX, int mouseY); | ||
/** | ||
* Handles key input events. | ||
* | ||
*/ | ||
fun keyTyped(typedChar: Char, keyCode: Int) | ||
|
||
void mouseClicked(int mouseX, int mouseY, int button); | ||
/** | ||
* Renders the screen and its components. | ||
* | ||
*/ | ||
fun drawScreen(mouseX: Int, mouseY: Int) | ||
|
||
void mouseReleased(int mouseX, int mouseY, int state); | ||
/** | ||
* Handles mouse click events. | ||
* | ||
*/ | ||
fun mouseClicked(mouseX: Int, mouseY: Int, button: Int) | ||
|
||
} | ||
/** | ||
* Handles mouse release events. | ||
* | ||
*/ | ||
fun mouseReleased(mouseX: Int, mouseY: Int, state: Int) | ||
} |
14 changes: 0 additions & 14 deletions
14
.../ccbluex/liquidbounce/ui/client/clickgui/style/styles/fdpdropdown/utils/normal/Utils.java
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters