OSDN Git Service
(root)
/
chemicraft
/
chemicraft.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Merge branch 'master' of https://scm.sourceforge.jp/gitroot/chemicraft/chemicraft
[chemicraft/chemicraft.git]
/
common
/
pcc
/
chemicraft
/
ChemiCraftConfiguration.java
1
package pcc.chemicraft;
2
3
public class ChemiCraftConfiguration {
4
5
private int nowID;
6
7
public ChemiCraftConfiguration(int baseID) {
8
this.nowID = baseID;
9
}
10
11
public int getNowID() {
12
return this.nowID;
13
}
14
15
public int additionID() {
16
return this.nowID++;
17
}
18
19
}