dronkowitz

TeamComposition.cs

Mar 31st, 2021 (edited)
335
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.51 KB | None | 0 0
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. using UnityEngine.Video;
  5.  
  6. [CreateAssetMenu(fileName = "New Team", menuName = "Team Composition", order = 0)]
  7. public class TeamComposition : ScriptableObject
  8. {
  9.     public GameObject SpeedCharacter;
  10.     public GameObject FlyingCharacter;
  11.     public GameObject PowerCharacter;
  12.     public GameObject SuperCharacter;
  13.     public Character speedCharacter, flyingCharacter,  powerCharacter, superCharacter;
  14.     public VideoClip teamBlast;
  15. }
  16.  
Add Comment
Please, Sign In to add comment