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