Advertisement
JeCodeLeSoir

exemple

May 6th, 2024
651
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.20 KB | None | 0 0
  1. IEnumerator Get_Data(Action<string> callback)
  2. {
  3.     callback("Hallo");
  4.  
  5.     yield return 0;
  6. }
  7.  
  8. void Start()
  9. {
  10.     StartCoroutine(Get_Data((data) =>
  11.     {
  12.         Debug.Log(data);
  13.     }));
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement