fixed monitor getSize return type

This commit is contained in:
Djeeberjr 2021-12-21 13:30:51 +01:00
parent 29c42f5a0b
commit e764c1a25c

View File

@ -1,5 +1,7 @@
package cc.periphs;
import cc.Term.TerminalSize;
@:multiReturn
extern class Position {
var x:Int;
@ -24,7 +26,7 @@ extern class Monitor {
public function setCursorPos(x:Int, y:Int):Void; // et the position of the cursor.
public function getCursorBlink():Bool; // Checks if the cursor is currently blinking.
public function setCursorBlink(blink:Bool):Void; // Sets whether the cursor should be visible (and blinking) at the current cursor position.
public function getSize():Int; // Get the size of the terminal.
public function getSize():TerminalSize; // Get the size of the terminal.
public function clear():Void; // Clears the terminal, filling it with the current background colour.
public function clearLine():Void; // Clears the line the cursor is currently on, filling it with the current background colour.
public function getTextColour():Color; // Return the colour that new text will be written as.