IMoveable.cs 274 B

1234567891011121314
  1. using Microsoft.Xna.Framework;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace Tutorial026.Interfaces
  8. {
  9. public interface IMoveable
  10. {
  11. Vector2 Velocity { get; set; }
  12. }
  13. }