-
-
Notifications
You must be signed in to change notification settings - Fork 243
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Mixin plugin transforms are refactored to use annotations. Include fixes to (#1211). Co-authored-by: 秋雨落 <i@rain.cx>
- Loading branch information
Showing
384 changed files
with
7,603 additions
and
2,950 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
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,8 +1,7 @@ | ||
/.gradle/ | ||
.gradle/ | ||
/.settings/ | ||
build/ | ||
/bin/ | ||
/.project | ||
/.settings/ | ||
.idea | ||
*.log |
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
11 changes: 0 additions & 11 deletions
11
arclight-common/src/main/java/io/izzel/arclight/common/bridge/core/block/BlockBridge.java
This file was deleted.
Oops, something went wrong.
15 changes: 15 additions & 0 deletions
15
...ght-common/src/main/java/io/izzel/arclight/common/bridge/core/command/CommandsBridge.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,15 @@ | ||
package io.izzel.arclight.common.bridge.core.command; | ||
|
||
import com.mojang.brigadier.Command; | ||
import com.mojang.brigadier.suggestion.SuggestionProvider; | ||
import com.mojang.brigadier.tree.CommandNode; | ||
|
||
import java.util.Map; | ||
import java.util.function.Function; | ||
|
||
public interface CommandsBridge { | ||
<S, T> void bridge$forge$mergeNode(CommandNode<S> sourceNode, CommandNode<T> resultNode, | ||
Map<CommandNode<S>, CommandNode<T>> sourceToResult, | ||
S canUse, Command<T> execute, | ||
Function<SuggestionProvider<S>, SuggestionProvider<T>> sourceToResultSuggestion); | ||
} |
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.