14 lines
201 B
C#
14 lines
201 B
C#
|
|
using UnityEngine;
|
|
using UnityEngine.UI;
|
|
|
|
namespace ET.Client
|
|
{
|
|
[ComponentOf(typeof(UI))]
|
|
public class UILobbyComponent : Entity, IAwake
|
|
{
|
|
public GameObject enterMap;
|
|
public Text text;
|
|
}
|
|
}
|