-
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.
- Loading branch information
1 parent
158abe5
commit ea9a482
Showing
19 changed files
with
934 additions
and
904 deletions.
There are no files selected for viewing
3 changes: 2 additions & 1 deletion
3
KotlinFire/src/main/kotlin/io/github/flyingpig525/base/block/Block.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
5 changes: 3 additions & 2 deletions
5
KotlinFire/src/main/kotlin/io/github/flyingpig525/base/block/BracketBlock.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
3 changes: 2 additions & 1 deletion
3
KotlinFire/src/main/kotlin/io/github/flyingpig525/base/block/CallFunctionBlock.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 |
---|---|---|
@@ -1,10 +1,11 @@ | ||
package io.github.flyingpig525.base.block | ||
|
||
import io.github.flyingpig525.base.JsonData | ||
import io.github.flyingpig525.base.item.Item | ||
|
||
class CallFunctionBlock<T>(funcName: String) : Block<T>( | ||
"call_func", | ||
mutableListOf(), | ||
"", | ||
"data: \"$funcName\"" | ||
) where T : Item, T : io.github.flyingpig525.base.JsonData | ||
) where T : Item, T : JsonData |
3 changes: 2 additions & 1 deletion
3
KotlinFire/src/main/kotlin/io/github/flyingpig525/base/block/CallProcessBlock.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 |
---|---|---|
@@ -1,10 +1,11 @@ | ||
package io.github.flyingpig525.base.block | ||
|
||
import io.github.flyingpig525.base.JsonData | ||
import io.github.flyingpig525.base.item.Item | ||
|
||
class CallProcessBlock<T>(processName: String) : Block<T>( | ||
"call_process", | ||
mutableListOf(), | ||
"", | ||
"data: \"$processName\"" | ||
) where T : Item, T : io.github.flyingpig525.base.JsonData | ||
) where T : Item, T : JsonData |
3 changes: 2 additions & 1 deletion
3
KotlinFire/src/main/kotlin/io/github/flyingpig525/base/block/ElseBlock.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
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
3 changes: 2 additions & 1 deletion
3
KotlinFire/src/main/kotlin/io/github/flyingpig525/base/block/FunctionBlock.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
3 changes: 2 additions & 1 deletion
3
KotlinFire/src/main/kotlin/io/github/flyingpig525/base/block/ProcessBlock.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
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.