-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from linyuzhe210/main
Add Entity spawn egg support
- Loading branch information
Showing
4 changed files
with
96 additions
and
2 deletions.
There are no files selected for viewing
15 changes: 15 additions & 0 deletions
15
src/main/kotlin/net/easecation/bedrockloader/bedrock/definition/ItemTextureDefinition.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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
package net.easecation.bedrockloader.bedrock.definition | ||
|
||
import net.easecation.bedrockloader.bedrock.BedrockTexturePath | ||
|
||
data class ItemTextureDefinition( | ||
val resource_pack_name: String?, | ||
val texture_name: String?, | ||
val padding: Int?, | ||
val num_mip_levels: Int?, | ||
val texture_data: Map<String, TextureData> | ||
) { | ||
data class TextureData( | ||
val textures: BedrockTexturePath | ||
) | ||
} |
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