ConstViewLayer.cs 337 B

123456789101112131415161718
  1. using System.Collections;
  2. using UnityEngine;
  3. namespace GFGGame
  4. {
  5. public class ConstViewLayer
  6. {
  7. /// <summary>
  8. /// 最底层
  9. /// </summary>
  10. public const string BOTTOM = "BOTTOM";
  11. /// <summary>
  12. /// 最顶层
  13. /// </summary>
  14. public const string TOP = "TOP";
  15. }
  16. }