mirror of
https://github.com/SquidDev-CC/CC-Tweaked
synced 2025-11-09 09:52:59 +00:00
17 lines
382 B
Java
17 lines
382 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.common;
|
|
|
|
import dan200.computercraft.core.terminal.Terminal;
|
|
|
|
public interface ITerminal
|
|
{
|
|
Terminal getTerminal();
|
|
|
|
boolean isColour();
|
|
}
|