Initial commit

This commit is contained in:
2024-01-14 12:22:14 +01:00
commit 9b47e374c7
24 changed files with 529 additions and 0 deletions

10
client/Client.gd Normal file
View File

@ -0,0 +1,10 @@
extends Node
const PLAYER = preload("res://player/Player.tscn")
var udp := PacketPeerUDP.new()
func _ready():
udp.connect_to_host("127.0.0.1", 4242)
var player = PLAYER.instantiate()
add_child(player)
print("Ready.")