This repository has been archived by the owner on Aug 20, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 118
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add terminal and fix right clicker stuff and other stuff
- Loading branch information
Showing
69 changed files
with
1,115 additions
and
702 deletions.
There are no files selected for viewing
Binary file not shown.
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
108 changes: 0 additions & 108 deletions
108
src/main/java/keystrokesmod/client/clickgui/raven/CommandLine.java
This file was deleted.
Oops, something went wrong.
24 changes: 8 additions & 16 deletions
24
src/main/java/keystrokesmod/client/clickgui/raven/Component.java
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,25 +1,17 @@ | ||
package keystrokesmod.client.clickgui.raven; | ||
|
||
public class Component { | ||
public void draw() { | ||
} | ||
public interface Component { | ||
public void draw(); | ||
|
||
public void compute(int mousePosX, int mousePosY) { | ||
} | ||
public void update(int mousePosX, int mousePosY); | ||
|
||
public void mouseDown(int x, int y, int b) { | ||
} | ||
public void mouseDown(int x, int y, int b); | ||
|
||
public void mouseReleased(int x, int y, int m) { | ||
} | ||
public void mouseReleased(int x, int y, int m); | ||
|
||
public void ky(char t, int k) { | ||
} | ||
public void keyTyped(char t, int k); | ||
|
||
public void setModuleStartAt(int n) { | ||
} | ||
public void setComponentStartAt(int n); | ||
|
||
public int getHeight() { | ||
return 0; | ||
} | ||
public int getHeight(); | ||
} |
Oops, something went wrong.