aboutsummaryrefslogtreecommitdiff
path: root/src/testmod/java/dev/isxander/yacl3/test/Entrypoint.java
blob: 2c4875fddbf074622ba274909814e0aa934c875f (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() {

    }
}
*//*?}*/