2024-12-15 01:39:39 +00:00
|
|
|
using UnityEngine;
|
|
|
|
|
|
|
|
|
|
public class table_missionbase : MonoBehaviour
|
|
|
|
|
{
|
|
|
|
|
public TextAsset m_json;
|
|
|
|
|
|
|
|
|
|
protected string json_last;
|
|
|
|
|
protected bool LoadComplete = false;
|
|
|
|
|
|
|
|
|
|
protected virtual void Awake()
|
|
|
|
|
{
|
|
|
|
|
json_last = m_json.text;
|
|
|
|
|
Resources.UnloadAsset(m_json);
|
|
|
|
|
m_json = null;
|
2025-01-02 01:07:33 +00:00
|
|
|
}
|
2024-12-15 01:39:39 +00:00
|
|
|
protected virtual void Start() { LoadComplete = true; }
|
|
|
|
|
public bool Get_LoadComplete() { return LoadComplete; }
|
|
|
|
|
}
|