16 lines
327 B
C#
16 lines
327 B
C#
using System;
|
|
using UnityEngine;
|
|
|
|
// ReSharper disable once CheckNamespace
|
|
namespace BlueWaterProject
|
|
{
|
|
public class Table : MonoBehaviour
|
|
{
|
|
public Seat[] SeatPoints;
|
|
|
|
private void Awake()
|
|
{
|
|
SeatPoints = transform.Find("SeatPoints").GetComponentsInChildren<Seat>();
|
|
}
|
|
}
|
|
} |