Skip to content

Commit 5262260

Browse files
committed
Update CoFH API
1 parent 51c0c2b commit 5262260

File tree

3 files changed

+14
-2
lines changed

3 files changed

+14
-2
lines changed
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
package cofh.api;
2+
3+
public class CoFHAPIProps {
4+
5+
private CoFHAPIProps() {
6+
7+
}
8+
9+
public static final String VERSION = "1.7.10R1.0.0";
10+
11+
}

src/main/java/cofh/api/energy/package-info.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,9 @@
22
* (C) 2014 Team CoFH / CoFH / Cult of the Full Hub
33
* http://www.teamcofh.com
44
*/
5-
@API(apiVersion = "1.0", owner = "CoFHCore", provides = "CoFHAPI|energy")
5+
@API(apiVersion = CoFHAPIProps.VERSION, owner = "CoFHAPI", provides = "CoFHAPI|energy")
66
package cofh.api.energy;
77

8+
import cofh.api.CoFHAPIProps;
89
import cpw.mods.fml.common.API;
910

src/main/java/cofh/api/package-info.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* (C) 2014 Team CoFH / CoFH / Cult of the Full Hub
33
* http://www.teamcofh.com
44
*/
5-
@API(apiVersion = "1.0", owner = "CoFHCore", provides = "CoFHAPI")
5+
@API(apiVersion = CoFHAPIProps.VERSION, owner = "CoFHLib", provides = "CoFHAPI")
66
package cofh.api;
77

88
import cpw.mods.fml.common.API;

0 commit comments

Comments
 (0)