-
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.
Fixed some grammatical errors in mod description.
- Loading branch information
1 parent
832924b
commit 80157f7
Showing
16 changed files
with
123 additions
and
7 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
apply from: rootProject.file("gradle/scripts/klib-common.gradle") | ||
|
||
base.archivesName = rootProject.name + "-blockentity" | ||
|
||
kessoku { | ||
module("base", "common") | ||
module("platform", "common") | ||
} | ||
|
||
dependencies { | ||
implementation libs.aj4j | ||
} |
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,15 @@ | ||
import net.fabricmc.loom.util.ModPlatform | ||
|
||
apply from: rootProject.file("gradle/scripts/klib-fabric.gradle") | ||
|
||
base.archivesName = rootProject.name + "-blockentity" | ||
|
||
kessoku { | ||
module("base", "common") | ||
|
||
common("blockentity", ModPlatform.FABRIC) | ||
shadowBundle("blockentity", ModPlatform.FABRIC) | ||
} | ||
|
||
dependencies { | ||
} |
10 changes: 10 additions & 0 deletions
10
...bric/src/main/java/band/kessoku/lib/impl/blockentity/fabric/KessokuBlockEntityFabric.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,10 @@ | ||
package band.kessoku.lib.impl.blockentity.fabric; | ||
|
||
import net.fabricmc.api.ModInitializer; | ||
|
||
public class KessokuBlockEntityFabric implements ModInitializer { | ||
@Override | ||
public void onInitialize() { | ||
|
||
} | ||
} |
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,36 @@ | ||
{ | ||
"schemaVersion": 1, | ||
"id": "kessoku_blockentity", | ||
"version": "${version}", | ||
"name": "Kessoku Block Entity", | ||
"description": "Common blockentity API.", | ||
"authors": [ | ||
"Kessoku Tea Time" | ||
], | ||
"contact": { | ||
"homepage": "https://modrinth.com/mod/kessoku-lib", | ||
"sources": "https://github.com/KessokuTeaTime/KessokuLib", | ||
"issues": "https://github.com/KessokuTeaTime/KessokuLib/issues" | ||
}, | ||
"license": "LGPL-3.0-only", | ||
"icon": "icon.png", | ||
"entrypoints": { | ||
"main": [ | ||
"band.kessoku.lib.impl.blockentity.fabric.KessokuBlockEntityFabric" | ||
] | ||
}, | ||
"environment": "*", | ||
"depends": { | ||
"fabricloader": ">=0.16.0", | ||
"minecraft": "1.21", | ||
"java": ">=21", | ||
"fabric-api": "*" | ||
}, | ||
"custom": { | ||
"modmenu": { | ||
"badges": [ | ||
"library" | ||
] | ||
} | ||
} | ||
} |
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,12 @@ | ||
import net.fabricmc.loom.util.ModPlatform | ||
|
||
apply from: rootProject.file("gradle/scripts/klib-neo.gradle") | ||
|
||
base.archivesName = rootProject.name + "-entrypoint" | ||
|
||
kessoku { | ||
module("base", "common") | ||
|
||
common("blockentity", ModPlatform.NEOFORGE) | ||
shadowBundle("blockentity", ModPlatform.NEOFORGE) | ||
} |
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 @@ | ||
loom.platform=neoforge |
29 changes: 29 additions & 0 deletions
29
blockentity/neo/src/main/resources/META-INF/neoforge.mods.toml
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,29 @@ | ||
modLoader = "javafml" | ||
loaderVersion = "[4,)" | ||
license = "LGPL-3.0-only" | ||
issueTrackerURL = "https://github.com/KessokuTeaTime/KessokuLib/issues" | ||
|
||
[[mods]] | ||
modId = "kessoku_blockentity" | ||
version = "${version}" | ||
displayName = "Kessoku Block Entity" | ||
description = ''' | ||
Common blockentity API. | ||
''' | ||
logoFile = "icon.png" | ||
authors = "Kessoku Tea Time" | ||
displayURL = "https://modrinth.com/mod/kessoku-lib" | ||
|
||
[[dependencies.kessoku_blockentity]] | ||
modId = "neoforge" | ||
type = "required" | ||
versionRange = "[21.0,)" | ||
ordering = "NONE" | ||
side = "BOTH" | ||
|
||
[[dependencies.kessoku_blockentity]] | ||
modId = "minecraft" | ||
type = "required" | ||
versionRange = "[1.21,)" | ||
ordering = "NONE" | ||
side = "BOTH" |
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
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