12 lines
270 B
Plaintext
12 lines
270 B
Plaintext
using UnityEngine;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
|
|
public abstract class UIPath
|
|
{
|
|
|
|
public static readonly UIBaseContext Login = new UIBaseContext("Prefabs/Panel/LoginPanel", type: UIType.Normal, hotType: UIHotType.None);
|
|
|
|
|
|
}
|