Files
plugin-library/Assets/02.InformationSave/RunTime/Data/InformationSaveScriptObject.cs
2025-03-26 09:34:52 +08:00

26 lines
645 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 UnityEngine;
/****************************************************
文件ScriptObjectTopicSave.cs
作者:张铮
邮箱:
日期2022/3/10 16:21:54
功能:
*****************************************************/
namespace Stary.Evo.InformationSave.Data
{
[CreateAssetMenu(fileName = "InformationSaveScriptObject", menuName = "Point8/InformationSaveScriptObject")]
public class InformationSaveScriptObject : ScriptableObject
{
public string[] Urls;
// [Button]
// public void SavaJson(){
//
// UnityWebRequestSystem.SaveJson(topics,"TopicJson");
// }
}
}