blob: c60e47ab6f9d0d2cff0c80ff8cf130d4afcd2969 [file] [log] [blame] [raw]
package li.cil.oc.common.components
import li.cil.oc.server.components.IComponent
trait IScreen {
def resolution: (Int, Int)
def resolution_=(value: (Int, Int)): Unit
def set(col: Int, row: Int, s: String): Unit
def fill(col: Int, row: Int, w: Int, h: Int, c: Char): Unit
def copy(col: Int, row: Int, w: Int, h: Int, tx: Int, ty: Int): Unit
}