-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f055578
commit d4e1a49
Showing
251 changed files
with
5,421 additions
and
2,901 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
13 changes: 10 additions & 3 deletions
13
src/main/java/xyz/templecheats/templeclient/event/EventCancellable.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,13 +1,20 @@ | ||
package xyz.templecheats.templeclient.event; | ||
public class EventCancellable extends EventStageable { | ||
|
||
public class EventCancellable extends EventStageable { | ||
private boolean canceled; | ||
public EventCancellable() {} | ||
|
||
public EventCancellable() { | ||
} | ||
|
||
/**************************************************************** | ||
* Getters and Setters | ||
****************************************************************/ | ||
|
||
public boolean isCanceled() { | ||
return canceled; | ||
} | ||
|
||
public void setCanceled(boolean canceled) { | ||
this.canceled = canceled; | ||
} | ||
} | ||
} |
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
1 change: 0 additions & 1 deletion
1
src/main/java/xyz/templecheats/templeclient/event/events/render/Render3DEvent.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
6 changes: 3 additions & 3 deletions
6
...ain/java/xyz/templecheats/templeclient/event/events/render/RenderChunkContainerEvent.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,12 +1,12 @@ | ||
package xyz.templecheats.templeclient.event.events.render; | ||
|
||
import net.minecraftforge.fml.common.eventhandler.Event; | ||
import net.minecraft.client.renderer.chunk.RenderChunk; | ||
import net.minecraftforge.fml.common.eventhandler.Event; | ||
|
||
public class RenderChunkContainerEvent extends Event { | ||
public RenderChunk RenderChunk; | ||
public RenderChunkContainerEvent(RenderChunk renderChunk) | ||
{ | ||
|
||
public RenderChunkContainerEvent(RenderChunk renderChunk) { | ||
RenderChunk = renderChunk; | ||
} | ||
} |
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
Oops, something went wrong.