mirror of
https://github.com/lihop/godot-xterm.git
synced 2024-11-10 04:40:25 +01:00
24 lines
499 B
GDScript
24 lines
499 B
GDScript
@tool
|
|
extends Node
|
|
|
|
signal data_received(data)
|
|
signal exited(exit_code, signum)
|
|
|
|
|
|
func open(cols: int, rows: int):
|
|
return _not_implemented()
|
|
|
|
|
|
func resize(cols: int, rows: int):
|
|
return _not_implemented()
|
|
|
|
|
|
func _not_implemented() -> int:
|
|
var method := ""
|
|
|
|
var stack = get_stack()
|
|
if stack.size() >= 2 and "function" in stack[1]:
|
|
method = "%s()" % stack[1].function
|
|
|
|
push_error("Method %s not implemented on the current platform (%s)." % [method, OS.get_name()])
|
|
return ERR_METHOD_NOT_FOUND
|