-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathRemapperPlugin.java
More file actions
46 lines (35 loc) · 1.39 KB
/
RemapperPlugin.java
File metadata and controls
46 lines (35 loc) · 1.39 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
package io.github.fabriccompatibilitylayers.modremappingapi.impl;
import org.jetbrains.annotations.ApiStatus;
import org.objectweb.asm.tree.ClassNode;
import org.spongepowered.asm.mixin.extensibility.IMixinConfigPlugin;
import org.spongepowered.asm.mixin.extensibility.IMixinInfo;
import java.util.List;
import java.util.Set;
@ApiStatus.Internal
public class RemapperPlugin implements IMixinConfigPlugin {
@Override
public void onLoad(String mixinPackage){}
@Override
public String getRefMapperConfig(){
return null;
}
@Override
public boolean shouldApplyMixin(String targetClassName, String mixinClassName){
return false;
}
@Override
public void acceptTargets(Set<String> myTargets, Set<String> otherTargets){}
@Override
public List<String> getMixins(){
try {
((Runnable)Class.forName("io.github.fabriccompatibilitylayers.modremappingapi.impl.ModRemappingApiInit").newInstance()).run();
} catch (InstantiationException | IllegalAccessException | ClassNotFoundException e) {
throw new RuntimeException(e);
}
return null;
}
@Override
public void preApply(String targetClassName, ClassNode targetClass, String mixinClassName, IMixinInfo mixinInfo){}
@Override
public void postApply(String targetClassName, ClassNode targetClass, String mixinClassName, IMixinInfo mixinInfo){}
}