From 14f30ce1e571e884fc55bcaa67b3bbaafe16ccc7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B9=80=EC=82=B0?= Date: Mon, 1 Sep 2025 16:45:48 +0900 Subject: [PATCH] =?UTF-8?q?CustomerPatienceUiComponent=20=ED=81=B4?= =?UTF-8?q?=EB=9E=98=EC=8A=A4=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Ui/OrderUi/CustomerPatienceUiComponent.cs | 26 +++++++++++++++++++ .../CustomerPatienceUiComponent.cs.meta | 3 +++ 2 files changed, 29 insertions(+) create mode 100644 Assets/_DDD/_Scripts/Restaurant/Ui/OrderUi/CustomerPatienceUiComponent.cs create mode 100644 Assets/_DDD/_Scripts/Restaurant/Ui/OrderUi/CustomerPatienceUiComponent.cs.meta diff --git a/Assets/_DDD/_Scripts/Restaurant/Ui/OrderUi/CustomerPatienceUiComponent.cs b/Assets/_DDD/_Scripts/Restaurant/Ui/OrderUi/CustomerPatienceUiComponent.cs new file mode 100644 index 000000000..2a4b38eaf --- /dev/null +++ b/Assets/_DDD/_Scripts/Restaurant/Ui/OrderUi/CustomerPatienceUiComponent.cs @@ -0,0 +1,26 @@ +using System.Collections.Generic; +using UnityEngine; + +namespace DDD.Restaurant +{ + public class CustomerPatienceUiComponent : MonoBehaviour + { + private IAISharedBlackboard _blackboard; + [SerializeField] HashSet _targetOrderType; + [SerializeField] RestaurantOrderType _currentOrderType; + private void Start() + { + if (!TryGetComponent(out _blackboard)) + { + Debug.LogWarning($"[{GetType().Name}] 블랙보드가 존재하지 않음 오브젝트 해시코드 {gameObject.GetHashCode()}"); + return; + } + + } + + private void Update() + { + + } + } +} \ No newline at end of file diff --git a/Assets/_DDD/_Scripts/Restaurant/Ui/OrderUi/CustomerPatienceUiComponent.cs.meta b/Assets/_DDD/_Scripts/Restaurant/Ui/OrderUi/CustomerPatienceUiComponent.cs.meta new file mode 100644 index 000000000..75543c032 --- /dev/null +++ b/Assets/_DDD/_Scripts/Restaurant/Ui/OrderUi/CustomerPatienceUiComponent.cs.meta @@ -0,0 +1,3 @@ +fileFormatVersion: 2 +guid: e509fdc10cff4d3487080f126f32544f +timeCreated: 1756711651 \ No newline at end of file