2012-04-25 03:17:23 +02:00
|
|
|
/*******************************************************************************
|
|
|
|
* 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
|
2016-05-19 01:47:25 +02:00
|
|
|
* <p>
|
2012-04-25 03:17:23 +02:00
|
|
|
* Contributors:
|
2016-05-19 01:47:25 +02:00
|
|
|
* cpw - initial API and implementation
|
2012-04-25 03:17:23 +02:00
|
|
|
******************************************************************************/
|
2012-01-27 05:50:52 +01:00
|
|
|
package cpw.mods.ironchest;
|
|
|
|
|
2016-03-21 17:44:27 +01:00
|
|
|
public class TileEntityGoldChest extends TileEntityIronChest
|
|
|
|
{
|
2012-12-18 17:22:21 +01:00
|
|
|
public TileEntityGoldChest()
|
|
|
|
{
|
|
|
|
super(IronChestType.GOLD);
|
|
|
|
}
|
2012-01-27 05:50:52 +01:00
|
|
|
}
|