alot of stuff i forgot to commit
This commit is contained in:
parent
fc2329a873
commit
b8d516e734
60 changed files with 7397 additions and 64 deletions
33
Assets/Scripts/Abilities/AbilitySelector.cs
Normal file
33
Assets/Scripts/Abilities/AbilitySelector.cs
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
using System.Collections.Generic;
|
||||
using UnityEngine;
|
||||
|
||||
public class AbilitySelector : MonoBehaviour
|
||||
{
|
||||
#region Statication
|
||||
|
||||
public static AbilitySelector instance;
|
||||
|
||||
private void Awake()
|
||||
{
|
||||
if (instance != null && instance != this)
|
||||
{
|
||||
Destroy(gameObject);
|
||||
return;
|
||||
}
|
||||
instance = this;
|
||||
DontDestroyOnLoad(this);
|
||||
}
|
||||
|
||||
#endregion
|
||||
[Header("INDEX 0 IS DEFAULT")]
|
||||
[SerializeField] private List<Ability> reisenPrimaries = new();
|
||||
[SerializeField] private List<Ability> reisenSecondaries = new();
|
||||
[SerializeField] private List<Ability> reisenSpecials = new();
|
||||
[SerializeField] private List<Ability> youmuPrimaries = new();
|
||||
[SerializeField] private List<Ability> youmuSecondaries = new();
|
||||
[SerializeField] private List<Ability> youmuSpecials = new();
|
||||
[Header("SelectedAbiltiies")]
|
||||
public List<Ability> reisenAbilities = new();
|
||||
public List<Ability> youmuAbilities = new(); //this will be a mess to work with...
|
||||
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue