This commit is contained in:
2025-12-17 00:55:30 +08:00
parent 85b9767201
commit 3786863b00
13 changed files with 37 additions and 73 deletions

View File

@@ -1,6 +1,5 @@
using System.Threading;
using Cysharp.Threading.Tasks;
using Enums;
using Services;
using Structs;
using UnityEngine;

View File

@@ -1,12 +1,11 @@
using System;
using TMPro;
using UnityEngine;
namespace Views {
public class ScoreView : MonoBehaviour {
private TextMeshProUGUI scoreText;
private float displayScore = 0;
private int actualScore = 0;
private float displayScore;
private int actualScore;
private void Awake() {
this.scoreText = GetComponentInChildren<TextMeshProUGUI>();