mirror of
https://github.com/architectury/architectury-loom.git
synced 2026-03-28 20:27:02 -05:00
Split a lot of logic for Arch and Quilt mod metadata into new classes
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
package dev.architectury.loom.metadata;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
import org.jetbrains.annotations.Nullable;
|
||||
|
||||
import net.fabricmc.loom.configuration.ifaceinject.InterfaceInjectionProcessor;
|
||||
|
||||
public interface ModMetadataFile {
|
||||
@Nullable String getAccessWidener();
|
||||
List<InterfaceInjectionProcessor.InjectedInterface> getInjectedInterfaces(@Nullable String modId);
|
||||
}
|
||||
Reference in New Issue
Block a user