TestLabel.cs 435 B

123456789101112131415161718
  1. using UnityEngine;
  2. using UnityEngine.UI;
  3. using System.Collections.Generic;
  4. public class TestLabel
  5. {
  6. #region Config
  7. //StartMark-Used by LabelUtility-Do not remove
  8. public static string Panel = "Panel";
  9. public static string Title = "Title";
  10. public static string Content = "Content";
  11. public static string Button = "Button";
  12. public static string NewButton = "NewButton";
  13. //EndMark-Used by LabelUtility-Do not remove
  14. #endregion
  15. }