Compare commits

...

2 Commits

Author SHA1 Message Date
e764c1a25c fixed monitor getSize return type 2021-12-21 13:30:51 +01:00
29c42f5a0b added missing date & epoch 2021-12-21 13:29:16 +01:00
2 changed files with 5 additions and 1 deletions

View File

@@ -24,6 +24,8 @@ extern class OS {
public static function cancelAlarm(id:Int):Void;
public static function shutdown():Void;
public static function reboot():Void;
public static function date(?format:String,?time:Int):Dynamic;
public static function epoch(?args:String):Int;
@:native("pullEvent") private static function _pullEvent(?type:String):Dynamic;
@:native("pullEventRaw") private static function _pullEventRaw(?type:String):Dynamic;

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.