mirror of
https://github.com/SquidDev-CC/CC-Tweaked
synced 2025-11-07 08:52:59 +00:00
gradle=7.1.1, gradle migrateMappings
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
/*
|
||||
* This file is part of ComputerCraft - http://www.computercraft.info
|
||||
* Copyright Daniel Ratcliffe, 2011-2021. Do not distribute without permission.
|
||||
* Send enquiries to dratcliffe@gmail.com
|
||||
*/
|
||||
|
||||
package dan200.computercraft.shared.computer.blocks;
|
||||
|
||||
import dan200.computercraft.shared.computer.core.ComputerFamily;
|
||||
|
||||
public interface IComputerTile
|
||||
{
|
||||
int getComputerID();
|
||||
|
||||
void setComputerID( int id );
|
||||
|
||||
String getLabel();
|
||||
|
||||
void setLabel( String label );
|
||||
|
||||
ComputerFamily getFamily();
|
||||
}
|
||||
Reference in New Issue
Block a user