Advertisement
Guest User

HeroCallback

a guest
Mar 5th, 2024
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. using UnityEngine;
  2. public class HeroCallback : MonoBehaviour
  3. {
  4.  
  5. public Hero hero;
  6.  
  7. public void DidChain(int chain)
  8. {
  9. hero.DidChain(chain);
  10. }
  11.  
  12. public void DidJumpAttack()
  13. {
  14. hero.DidJumpAttack();
  15. }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement