IRotatable.cs 115 B

1234567
  1. namespace MonoGame.Extended
  2. {
  3. public interface IRotatable
  4. {
  5. float Rotation { get; set; }
  6. }
  7. }