mirror of
https://github.com/git-learning-game/oh-my-git.git
synced 2024-11-03 19:04:40 +01:00
12 lines
138 B
GDScript
12 lines
138 B
GDScript
extends Node
|
|
|
|
func _ready():
|
|
pass
|
|
|
|
func data(s):
|
|
print(s)
|
|
|
|
|
|
func send(new_text):
|
|
print("sending "+new_text)
|
|
$TCPServer.send(new_text)
|