Fix class naming

This commit is contained in:
2025-05-31 16:57:02 -07:00
parent 7368bc6fff
commit d4e9f1a265
2 changed files with 2 additions and 2 deletions

View File

@@ -1,7 +1,7 @@
using TMPro;
using UnityEngine;
public class Game : MonoBehaviour
public class GamePlayer : MonoBehaviour
{
private readonly float spawnRate = 1f;
private float nextSpawnTime;

View File

@@ -1,7 +1,7 @@
using UnityEngine;
using UnityEngine.UI;
public class PauseMenu : MonoBehaviour
public class GamePlayerPauseMenu : MonoBehaviour
{
public Button backButton;
public Button continueButton;