27 lines
332 B
C#
27 lines
332 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
namespace TON
|
|
{
|
|
public enum UIList
|
|
{
|
|
PANEL_START,
|
|
|
|
TitleUI,
|
|
IngameUI,
|
|
ControllerUI,
|
|
LogUI,
|
|
|
|
|
|
PANEL_END,
|
|
|
|
POPUP_START,
|
|
PausePopupUI,
|
|
LoadingUI,
|
|
|
|
|
|
POPUP_END,
|
|
}
|
|
}
|