Block.cs 541 B

123456789101112131415161718192021
  1. //-----------------------------------------------------------------------------
  2. // Block.cs
  3. //
  4. // Microsoft XNA Community Game Platform
  5. // Copyright (C) Microsoft Corporation. All rights reserved.
  6. //-----------------------------------------------------------------------------
  7. using System;
  8. using Microsoft.Xna.Framework;
  9. namespace TransformedCollision
  10. {
  11. /// <summary>
  12. /// A falling and spinning object to be avoided.
  13. /// </summary>
  14. class Block
  15. {
  16. public Vector2 Position;
  17. public float Rotation;
  18. }
  19. }