11 lines
213 B
GDScript3
11 lines
213 B
GDScript3
|
|
class_name MultiplayerData extends Node
|
||
|
|
|
||
|
|
|
||
|
|
@rpc("authority", "reliable")
|
||
|
|
func set_multiplayer_active() -> void:
|
||
|
|
pass
|
||
|
|
|
||
|
|
@rpc("authority", "call_local", "reliable")
|
||
|
|
func set_active_player_id(_id: int) -> void:
|
||
|
|
pass
|