CapersProject/Assets/02.Scripts/DDD/Prop/Furniture/ServingTable.cs

11 lines
257 B
C#
Raw Normal View History

2025-02-17 21:47:56 +00:00
using System.Collections.Generic;
using UnityEngine;
namespace DDD.Tycoons
{
public class ServingTable : MonoBehaviour
{
[field: SerializeField]
public List<ServingTableSeat> ServingTableSeats { get; private set; } = new(2);
}
}