mirror of
https://github.com/lihop/godot-xterm.git
synced 2024-11-14 22:30:26 +01:00
10 lines
156 B
GDScript
10 lines
156 B
GDScript
|
extends "res://addons/godot_xterm/nodes/pty/pty_native.gd"
|
||
|
|
||
|
|
||
|
func write(data):
|
||
|
emit_signal("data_received", data)
|
||
|
|
||
|
|
||
|
func run_process(_delta: float):
|
||
|
pass
|