blob: 35f7312a71f23669ed1d30a2a76a79e67a5ef63a [file] [log] [blame] [raw]
package li.cil.oc.common.components
import li.cil.oc.server.components.IComponent
trait IScreen {
def resolution_=(value: (Int, Int)): Unit
def resolution:(Int,Int) // 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
}