Advertisement
Diamond32_Tutoriales

TypeSaved

Mar 30th, 2021
663
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.33 KB | None | 0 0
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4.  
  5. //Aqui puedes agregar mas objetos para que sean guardados.
  6. //Poniendo por ejemplo
  7. //public enum type{
  8. // Pared, Piso, Techo
  9. //};
  10.  
  11. public enum Type
  12. {
  13.     Piso,
  14.     Pared
  15. };
  16.  
  17. public class TypeSaved : MonoBehaviour
  18. {
  19.     public Type tipo;
  20. }
  21.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement