Item shop functioning

This commit is contained in:
Sewmina
2022-05-06 00:36:18 +05:30
parent 95583003f3
commit 1c998cb146
46 changed files with 5069 additions and 1346 deletions

View File

@@ -0,0 +1,23 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.Events;
public class WorldspaceButton : MonoBehaviour
{
public UnityEvent OnClick;
void Start()
{
}
// Update is called once per frame
void Update()
{
}
public void Click(){
OnClick.Invoke();
}
}