-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Moved most of EntityMixin to PlayerEntityMixin; moved Stomping to new…
… ServerPlayerEntityMixin. Working on Interface Injection.
- Loading branch information
1 parent
0431012
commit 8915398
Showing
13 changed files
with
181 additions
and
113 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
2 changes: 1 addition & 1 deletion
2
...loralquafloral/mixin/StompableEntity.java → .../com/floralquafloral/StompableEntity.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
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,37 @@ | ||
{ | ||
"schemaVersion": 1, | ||
"id": "qua_mario_api", | ||
"version": "1.0.0", | ||
"name": "Mario qua Mario API", | ||
"description": "The API for the Mario qua Mario mod. Used for registering Actions, Power-ups, Characters, Stomp Types, and more!", | ||
"authors": [ | ||
"Floral qua Floral" | ||
], | ||
"contact": { | ||
"sources": "https://github.com/floral-qua-floral/marioQuaMario", | ||
"issues": "https://github.com/floral-qua-floral/marioQuaMario/issues" | ||
}, | ||
"license": "CC0-1.0", | ||
"icon": "assets/qua_mario/icon.png", | ||
"environment": "*", | ||
"entrypoints": { | ||
}, | ||
"mixins": [ | ||
"qua_mario_api.mixins.json" | ||
], | ||
"depends": { | ||
"fabricloader": ">=0.16.7", | ||
"minecraft": "~1.21", | ||
"java": ">=21", | ||
"fabric-api": "*" | ||
}, | ||
"suggests": { | ||
"another-mod": "*" | ||
}, | ||
|
||
"custom": { | ||
"loom:injected_interfaces": { | ||
"net/minecraft/entity/Entity.java": ["com/floralquafloral/StompableEntity"] | ||
} | ||
} | ||
} |
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,13 @@ | ||
{ | ||
"required": true, | ||
"package": "com.floralquafloral.mixin", | ||
"compatibilityLevel": "JAVA_21", | ||
"mixins": [ | ||
"EntityStompabilityMixin" | ||
], | ||
"injectors": { | ||
"defaultRequire": 1 | ||
}, | ||
"client": [ | ||
] | ||
} |
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
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.