mmorpg2d/Assets/Script/ClickWorldObj.cs
2025-06-07 23:53:54 +05:30

25 lines
375 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class ClickWorldObj : MonoBehaviour
{
// Start is called before the first frame update
void Start()
{
}
// Update is called once per frame
void Update()
{
}
void OnMouseDown()
{
CraftManager.instance.ShowCraftUI();
}
}