Advertisement
Guest User

Untitled

a guest
Apr 26th, 2019
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. namespace ShootEmUp.Animations
  2. {
  3. /// <summary>
  4. /// Interface for objects with animations.
  5. /// </summary>
  6. interface IAnimated
  7. {
  8. Animator GetAnimator { get; }
  9. }
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement