mirror of
https://github.com/git-learning-game/oh-my-git.git
synced 2024-11-22 16:20:19 +01:00
Remove unused callback functions
This commit is contained in:
parent
01cf45dee4
commit
7f3b8d1bca
1 changed files with 0 additions and 7 deletions
7
main.gd
7
main.gd
|
@ -17,13 +17,6 @@ func _ready():
|
||||||
server = TCP_Server.new()
|
server = TCP_Server.new()
|
||||||
server.listen(1234)
|
server.listen(1234)
|
||||||
|
|
||||||
func _connected(id, proto):
|
|
||||||
print("!!!")
|
|
||||||
print(id)
|
|
||||||
|
|
||||||
func _player_connected(id):
|
|
||||||
print("connected")
|
|
||||||
|
|
||||||
func _process(delta):
|
func _process(delta):
|
||||||
if server.is_connection_available():
|
if server.is_connection_available():
|
||||||
client_connection = server.take_connection()
|
client_connection = server.take_connection()
|
||||||
|
|
Loading…
Reference in a new issue