SceneWindow.cs 440 B

1234567891011121314151617181920212223242526
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. using static ScenesManager;
  5. public class SceneInfo : MonoBehaviour
  6. {
  7. public SceneType _sceneType;
  8. // Start is called before the first frame update
  9. void Start()
  10. {
  11. }
  12. // Update is called once per frame
  13. void Update()
  14. {
  15. }
  16. public void setType(SceneType stype)
  17. {
  18. _sceneType = stype;
  19. }
  20. }