-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathRealismMod.java
More file actions
32 lines (21 loc) · 801 Bytes
/
RealismMod.java
File metadata and controls
32 lines (21 loc) · 801 Bytes
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
package net.Realism;
import com.simibubi.create.foundation.data.CreateRegistrate;
import net.minecraft.resources.ResourceLocation;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
public class RealismMod {
public static final String MOD_ID = "realism";
public static final String NAME = "Create Realism";
public static final Logger LOGGER = LoggerFactory.getLogger(NAME);
public static final CreateRegistrate REGISTRATE = CreateRegistrate.create(MOD_ID);
public static void init() {
RealismSounds.SOUND_EVENTS.register();
}
public static void commonSetup() {
RNetworking.register();
RExtras.Schedule.register();
}
public static ResourceLocation id(String path) {
return new ResourceLocation(MOD_ID, path);
}
}