forked from war-monger/Flan-s-Mod-Plus-War_Monger
-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathWW2PackMod.java
More file actions
22 lines (18 loc) · 773 Bytes
/
Copy pathWW2PackMod.java
File metadata and controls
22 lines (18 loc) · 773 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.flansmod.ww2.common;
import com.flansmod.common.FlansMod;
import com.flansmod.common.IFlansContentProvider;
import cpw.mods.fml.common.Mod;
@Mod(modid = WW2PackMod.MODID, name = WW2PackMod.NAME, version = WW2PackMod.VERSION, dependencies = "required-after: simplepartspack; required-after: " + FlansMod.MODID)
public class WW2PackMod implements IFlansContentProvider {
public static final String MODID = "ww2pack";
public static final String VERSION = "@VERSION@";
public static final String NAME = "WW2 Pack";
@Override
public String getContentDirectory() {
return "WW2 Pack";
}
@Override
public void registerModelLocations() {
FlansMod.registerModelLocation("ww2", "com.flansmod.ww2.client.model");
}
}