using UnityEngine; namespace BlueWaterProject { public class Seat : MonoBehaviour { public Transform Transform { get; } public bool IsUsing { get; set; } = false; public bool IsDirty { get; set; } = false; } }