using System.Collections; using System.Collections.Generic; using UnityEngine; using System; [Serializable] public class PlayerStatistics{ public int highScore; public PlayerStatistics() { highScore = 0; } }