Block.cs 638 B

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