Added PlayerHealth and PlayerShoot

This commit is contained in:
2026-06-18 18:04:22 +03:00
parent c9c6c3e032
commit 87762d1721
19 changed files with 1600 additions and 754 deletions
@@ -16,14 +16,14 @@ public class MainMenuUIController : MonoBehaviour
private void HostGame()
{
Debug.Log("Hosting game...");
NetworkManager.Singleton.StartHost();
NetworkManager.Singleton.SceneManager.LoadScene("DEV-Game", LoadSceneMode.Single);
Debug.Log("Hosting game...");
}
private void JoinGame()
{
Debug.Log("Joining game...");
NetworkManager.Singleton.StartClient();
Debug.Log("Joining game...");
}
}