aboutsummaryrefslogtreecommitdiff
path: root/src/Java/cofh/mod/ChildMod.java
blob: b07c35a8a1ea468f05a0801c3637228ad6b15775 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package cofh.mod;

import cpw.mods.fml.common.Mod;


public @interface ChildMod {

	/**
	 * The {@link Mod} instance defining this ChildMod
	 */
	Mod[] mod();

	/**
	 * The parent {@link Mod}
	 */
	String parent();
}