You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
391 B

using UnityEngine;
namespace ET
{
[ComponentOf(typeof(Scene))]
public class GlobalComponent: Entity, IAwake
{
public static GlobalComponent Instance;
public Transform Global { get; set; }
public Transform Unit { get; set; }
public Transform UI { get; set; }
public Transform MainCamera;
public Transform UICamera;
}
}