Files
M-Gameton-06/Gameton-06/Assets/Gameton/Scripts/Shop/ShopClickHandler.cs
2025-01-31 19:16:39 +09:00

15 lines
287 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace TON
{
public class ShopClickHandler : MonoBehaviour
{
void OnMouseDown()
{
Debug.Log("상점이 클릭됨! (마우스 클릭 또는 터치)");
}
}
}