14 lines
251 B
C#
14 lines
251 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
using MuHua;
|
|
|
|
/// <summary>
|
|
/// 全局管理
|
|
/// </summary>
|
|
public class SingleManager : ModuleSingle<SingleManager> {
|
|
|
|
protected override void Awake() => NoReplace();
|
|
|
|
}
|