CapersProject/Assets/02.Scripts/DDD/Prop/Furniture/ServingTable.cs
2025-02-18 06:47:56 +09:00

11 lines
257 B
C#

using System.Collections.Generic;
using UnityEngine;
namespace DDD.Tycoons
{
public class ServingTable : MonoBehaviour
{
[field: SerializeField]
public List<ServingTableSeat> ServingTableSeats { get; private set; } = new(2);
}
}