aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/me/shedaniel/rei/RoughlyEnoughItemsMixin.java
blob: 3cd7cca6d94eb9bf960dd5936315a20b4362673f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package me.shedaniel.rei;

import org.dimdev.riftloader.listener.InitializationListener;
import org.spongepowered.asm.launch.MixinBootstrap;
import org.spongepowered.asm.mixin.Mixins;

public class RoughlyEnoughItemsMixin implements InitializationListener {
    
    @Override
    public void onInitialization() {
        MixinBootstrap.init();
        Mixins.addConfiguration("roughlyenoughitems.client.json");
    }
    
}