This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| interface Editor { | |
| val carretPosition: Vec2i | |
| val selectionLength: Int | |
| fun putChar(char: Char) | |
| fun putString(string: String) | |
| fun putColor(position: Vec2i, length: Int, forecolor: Color, backcolor: Color) |
NewerOlder