diff options
Diffstat (limited to 'Assets/Test/00_EventSystem/Test.cs')
-rw-r--r-- | Assets/Test/00_EventSystem/Test.cs | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/Assets/Test/00_EventSystem/Test.cs b/Assets/Test/00_EventSystem/Test.cs new file mode 100644 index 0000000..69d4549 --- /dev/null +++ b/Assets/Test/00_EventSystem/Test.cs @@ -0,0 +1,23 @@ +using System.Collections; +using System.Collections.Generic; +using UnityEngine; + +public class Test : MonoBehaviour { + + // Use this for initialization + void Start () { + + } + + // Update is called once per frame + void Update () { + + } + + public void OnClickCallback() + { + Debug.Log("OnClicked!!!"); + } + + +} |