20 lines
474 B
C#
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();
|
||
|
}
|
||
|
}
|
||
|
}
|