游戏主类入口

版权声明:转载或者引用本文内容请注明来源及原作者 https://blog.csdn.net/TIANHUNYISHUI/article/details/88814709
using Framework;

/// <summary>
/// 游戏主类入口
/// </summary>
public sealed class Main : MonoSingleton<Main> {
	protected override void Awake () {
		base.Awake ();
	}

	// Use this for initialization
	void Start () {

	}

	// Update is called once per frame
	void Update () {

	}
}

 

猜你喜欢

转载自blog.csdn.net/TIANHUNYISHUI/article/details/88814709