HKMBFZ/Assets/Scripts/Szz_Scripts/Manager181Logic.cs

21 lines
421 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
/// <summary>
/// 181的主要数据同步脚本用于界面中的数据同步
/// </summary>
public class Manager181Logic : MonoBehaviour
{
public static Manager181Logic Instance { get; private set; }
private void Awake()
{
Instance = this;
zhenDiShuJuType = "人工输入";
}
public string zhenDiShuJuType;
}