10 lines
210 B
C#
10 lines
210 B
C#
|
using System.Collections.Generic;
|
|||
|
using UnityEngine;
|
|||
|
|
|||
|
namespace UnityTest.ZXL
|
|||
|
{
|
|||
|
public class BindObject : MonoBehaviour
|
|||
|
{
|
|||
|
public List<GameObject> gameObjects = new List<GameObject>();
|
|||
|
}
|
|||
|
}
|