11 lines
257 B
C#
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);
|
|
}
|
|
} |