27 lines
463 B
C#
27 lines
463 B
C#
|
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()
|
|||
|
{
|
|||
|
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
|