last update

This commit is contained in:
2023-07-09 23:43:19 +05:00
parent 47d8f95440
commit fe2ebf72c6
11 changed files with 2141 additions and 109 deletions
+7 -1
View File
@@ -51,7 +51,13 @@ public class ClientDataService
}
}
public int position
public int city
{
get => PlayerPrefs.GetInt("city", -1);
set => PlayerPrefs.SetInt("city", value);
}
public int topPosition
{
get => PlayerPrefs.GetInt("position", 0);
set => PlayerPrefs.SetInt("position", value);