-
Notifications
You must be signed in to change notification settings - Fork 8
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
cc4b308
commit a506c21
Showing
13 changed files
with
458 additions
and
296 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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
8 changes: 7 additions & 1 deletion
8
src/main/java/org/violetmoon/zeta/event/play/loading/ZGatherAdditionalFlags.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 |
---|---|---|
@@ -1,6 +1,12 @@ | ||
package org.violetmoon.zeta.event.play.loading; | ||
|
||
import net.minecraftforge.eventbus.api.Event; | ||
import org.violetmoon.zeta.config.ConfigFlagManager; | ||
import org.violetmoon.zeta.event.bus.IZetaPlayEvent; | ||
|
||
public record ZGatherAdditionalFlags(ConfigFlagManager flagManager) implements IZetaPlayEvent { } | ||
import java.util.Objects; | ||
|
||
public interface ZGatherAdditionalFlags extends IZetaPlayEvent { | ||
|
||
ConfigFlagManager flagManager(); | ||
} |
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.