27 lines
463 B
C#
Raw Normal View History

2025-01-25 04:38:09 +08:00
using System;
using System.Collections.Generic;
using UnityEngine;
namespace Thousandto.Launcher.ExternalLibs
{
/// <summary>
/// 场景地图区域数据
/// </summary>
public class SceneMultiTexScript : MonoBehaviour
{
#region//公共变量
public Texture[] MultiTexs = null;
#endregion
private void Start()
{
}
private void OnDestroy()
{
}
}
}