TestMsgBox.cs 468 B

1234567891011121314151617181920212223
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. public class TestMsgBox : MonoBehaviour
  5. {
  6. // Start is called before the first frame update
  7. void Start()
  8. {
  9. MessageBoxController.YorN_Message("this is messagebox updated message. ");
  10. }
  11. // Update is called once per frame
  12. void Update()
  13. {
  14. }
  15. public static void CallbackAction()
  16. {
  17. Debug.Log("this is call back action");
  18. }
  19. }