12345678910111213141516171819202122232425 |
- #region File Description
- //-----------------------------------------------------------------------------
- // Block.cs
- //
- // Microsoft XNA Community Game Platform
- // Copyright (C) Microsoft Corporation. All rights reserved.
- //-----------------------------------------------------------------------------
- #endregion
- #region Using Statements
- using System;
- using Microsoft.Xna.Framework;
- #endregion
- namespace TransformedCollision
- {
- /// <summary>
- /// A falling and spinning object to be avoided.
- /// </summary>
- class Block
- {
- public Vector2 Position;
- public float Rotation;
- }
- }
|