CapersProject/Assets/02.Scripts/Prop/Tycoon/BeverageMachine.cs

21 lines
603 B
C#
Raw Normal View History

2024-09-10 10:25:05 +00:00
// using UnityEngine;
//
// namespace BlueWater.Tycoons
// {
// public class BeverageMachine : InteractionFurniture
// {
// [SerializeField]
// private string _itemIdx = "40001";
//
// public override void Interaction()
// {
// // TODO : 미니게임을 시작하고, 성공 여부에 따라 음식 품질 부여
// CurrentTycoonPlayer.CarryItem(_itemIdx);
// }
//
// public override bool CanInteraction()
// {
// return !CurrentTycoonPlayer.IsCarriedItem();
// }
// }
// }