//----------------------------------------------------------------------------- // Block.cs // // Microsoft XNA Community Game Platform // Copyright (C) Microsoft Corporation. All rights reserved. //----------------------------------------------------------------------------- using System; using Microsoft.Xna.Framework; namespace TransformedCollision { /// /// A falling and spinning object to be avoided. /// class Block { public Vector2 Position; public float Rotation; } }