LaboratoryProtection/Assets/UnityTest/ZXL/Scripts/BindObject.cs

10 lines
210 B
C#
Raw Normal View History

using System.Collections.Generic;
using UnityEngine;
namespace UnityTest.ZXL
{
public class BindObject : MonoBehaviour
{
public List<GameObject> gameObjects = new List<GameObject>();
}
}