using System.Collections; using System.Collections.Generic; using UnityEngine; //Aqui puedes agregar mas objetos para que sean guardados. //Poniendo por ejemplo //public enum type{ // Pared, Piso, Techo //}; public enum Type { Piso, Pared }; public class TypeSaved : MonoBehaviour { public Type tipo; }