CapersProject/Assets/02.Scripts/Tycoon/ServingTableController.cs
2024-10-16 03:01:16 +09:00

20 lines
474 B
C#

using System.Collections.Generic;
using System.Linq;
using UnityEngine;
namespace BlueWater.Tycoons
{
public class ServingTableController : MonoBehaviour
{
[SerializeField]
private Transform _servingTableRoot;
[SerializeField]
private List<ServingTable> _servingTables;
private void Awake()
{
_servingTables = _servingTableRoot.GetComponentsInChildren<ServingTable>().ToList();
}
}
}