This repository has been archived by the owner on Nov 6, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 77
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
pan4ur
committed
Jul 30, 2024
1 parent
ab05a5c
commit 02cacbc
Showing
3 changed files
with
53 additions
and
6 deletions.
There are no files selected for viewing
16 changes: 16 additions & 0 deletions
16
src/main/java/thunder/hack/events/impl/EventEntitySpawnPost.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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
package thunder.hack.events.impl; | ||
|
||
import net.minecraft.entity.Entity; | ||
import thunder.hack.events.Event; | ||
|
||
public class EventEntitySpawnPost extends Event { | ||
private final Entity entity; | ||
|
||
public EventEntitySpawnPost(Entity entity) { | ||
this.entity = entity; | ||
} | ||
|
||
public Entity getEntity() { | ||
return this.entity; | ||
} | ||
} |
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