8 lines
195 B
C#
8 lines
195 B
C#
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
public class StatuesDetectionController : MonoBehaviour
|
|
{
|
|
public List<StatueDetection> statueDetections = new List<StatueDetection>();
|
|
}
|