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