buildcraft/api/buildcraft/api/core/IBox.java

24 lines
503 B
Java
Raw Normal View History

2014-02-15 09:21:40 +01:00
/**
* Copyright (c) 2011-2014, SpaceToad and the BuildCraft Team
2012-05-09 22:43:05 +02:00
* http://www.mod-buildcraft.com
2014-02-15 09:21:40 +01:00
*
* The BuildCraft API is distributed under the terms of the MIT License.
* Please check the contents of the license, which should be located
* as "LICENSE.API" in the BuildCraft source code distribution.
2012-05-09 22:43:05 +02:00
*/
2012-07-25 12:45:15 +02:00
package buildcraft.api.core;
2012-05-09 22:43:05 +02:00
public interface IBox extends IZone {
2012-06-04 22:48:18 +02:00
IBox expand(int amount);
2012-06-04 22:48:18 +02:00
IBox contract(int amount);
2012-06-04 22:48:18 +02:00
Position pMin();
2012-06-04 22:48:18 +02:00
Position pMax();
2012-06-04 22:48:18 +02:00
void createLaserData();
2012-06-04 22:48:18 +02:00
2012-05-09 22:43:05 +02:00
}