OSDN Git Service

とりあえずコミット
[chemicraft/chemicraft.git] / common / pcc / chemicraft / item / ItemAtomInfoContainer.java
1 package pcc.chemicraft.item;
2
3 import net.minecraft.item.Item;
4 import pcc.chemicraft.util.AtomInfo;
5
6 public class ItemAtomInfoContainer extends Item {
7
8         /**
9          * AtonInfoのインスタンス
10          */
11         public AtomInfo atomInfo = new AtomInfo();
12
13
14
15         public ItemAtomInfoContainer(int par1){
16                 super(par1);
17         }
18
19 }