LobbyScene 추가

This commit is contained in:
aube.lee
2025-01-31 19:16:39 +09:00
parent 770562dd40
commit d73634fbab
8 changed files with 503 additions and 1 deletions

View File

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