blob: 8aa96514f36c9b5bd091da93489921c1a42b5c36 [file] [log] [blame] [raw]
package li.cil.oc.common.components
trait IScreen {
def resolution_=(value: (Int, Int)): Unit
def resolution {} // Required for setter.
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
}