ironbarrels/IronChests2/common/cpw/mods/ironchest/TileEntityDiamondChest.java

19 lines
674 B
Java
Raw Normal View History

/*******************************************************************************
* Copyright (c) 2012 cpw.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the GNU Public License v3.0
* which accompanies this distribution, and is available at
* http://www.gnu.org/licenses/gpl.html
*
* Contributors:
* cpw - initial API and implementation
******************************************************************************/
2012-01-28 01:07:39 +01:00
package cpw.mods.ironchest;
public class TileEntityDiamondChest extends TileEntityIronChest {
public TileEntityDiamondChest()
{
super(IronChestType.DIAMOND);
}
2012-01-28 01:07:39 +01:00
}