Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- 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;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement