aboutsummaryrefslogtreecommitdiff
path: root/src/testmod/java/dev/isxander/yacl3/test/Entrypoint.java
blob: 78fcd6222587cea38acc1c4d2a844a314132c913 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/*? if neoforge {*/
/*package dev.isxander.yacl3.test;

import net.neoforged.fml.common.Mod;

@Mod("yacl_test")
public class Entrypoint {
    public Entrypoint() {

    }
}
*//*?} elif forge {*//*
package dev.isxander.yacl3.test;

import net.minecraftforge.fml.common.Mod;

@Mod("yacl_test")
public class Entrypoint {
    public Entrypoint() {

    }
}
*//*?}*/