using System.Collections; using System.Collections.Generic; using UnityEngine; public class PokemonDatabase : MonoBehaviour { public List pokemons = new List(); public static List currentPokemonSetEnemy = new List(); } public static class CurrentPokemon { public static List currentPokemonSetPlayer = new List(); }