11 lines
246 B
C#
11 lines
246 B
C#
![]() |
using UnityEngine;
|
||
|
|
||
|
namespace BlueWaterProject
|
||
|
{
|
||
|
public class Seat : MonoBehaviour
|
||
|
{
|
||
|
public Transform Transform { get; }
|
||
|
public bool IsUsing { get; set; } = false;
|
||
|
public bool IsDirty { get; set; } = false;
|
||
|
}
|
||
|
}
|