18 lines
410 B
C#
18 lines
410 B
C#
using System;
|
|
using UnityEngine;
|
|
|
|
namespace BlueWaterProject
|
|
{
|
|
public class Seat : MonoBehaviour
|
|
{
|
|
public Transform Transform { get; }
|
|
public GameObject Dirty { get; set; }
|
|
public bool IsUsing { get; set; } = false;
|
|
public bool IsDirty { get; set; } = false;
|
|
|
|
private void Awake()
|
|
{
|
|
Dirty = transform.GetChild(0).gameObject;
|
|
}
|
|
}
|
|
} |