dronkowitz

Ranking.cs

Jul 7th, 2021 (edited)
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.37 KB | None | 0 0
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. [CreateAssetMenu(fileName = "Level Scores", menuName = "Level Scores", order = 1)]
  5. public class Ranking : ScriptableObject
  6. {
  7.     public int[] teamSonic = new int[4];
  8.     public int[] teamDark = new int[4];
  9.     public int[] teamRose = new int[4];
  10.     public int[] teamChaotix = new int[4];
  11. }
  12.  
Add Comment
Please, Sign In to add comment