IWindowState.cs 214 B

1234567891011
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. interface IWindowState {
  5. bool IsInitOver { get; set; }
  6. void OnEnterPreInitWindows();
  7. void OnExitPreInitWindows();
  8. }