17 lines
363 B
GDScript
17 lines
363 B
GDScript
extends Node
|
|
|
|
# This script is deprecated in favor of NakamaManager.
|
|
# The logic has been moved to allow the NakamaMultiplayerBridge to handle
|
|
# the networking transparently.
|
|
|
|
func _ready():
|
|
pass
|
|
|
|
func host_game():
|
|
# Redirect to NakamaManager
|
|
NakamaManager.host_game()
|
|
|
|
func join_game(match_id):
|
|
# Redirect to NakamaManager
|
|
NakamaManager.join_game(match_id)
|