Add portable player data and identity backups

This commit is contained in:
Alexander Sellite 2026-07-29 23:51:25 -04:00
parent 141b54261d
commit ba4476511f
23 changed files with 2132 additions and 237 deletions

View file

@ -292,6 +292,10 @@ func is_joined_client() -> bool:
return state == State.JOINED_CLIENT
func is_session_active() -> bool:
return is_host() or is_joined_client()
func get_player_count() -> int:
return _registry.size()