mirror of
https://github.com/SquidDev-CC/CC-Tweaked
synced 2025-11-06 08:22:59 +00:00
23 lines
508 B
Java
23 lines
508 B
Java
/*
|
|
* 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();
|
|
}
|