Advertisement
dronkowitz

Interface.cs

Nov 4th, 2022 (edited)
725
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.22 KB | None | 0 0
  1. public interface IInteractable
  2. {
  3.     void Interact(PlayerMovement player);
  4.     bool CanInteract(bool isPlayerInteraction);
  5.     void StartHover();
  6.     void StopHover();
  7. }
  8.  
  9. public interface IAction
  10. {
  11.     void Cancel();
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement