123456789101112131415161718192021222324252627282930313233343536 |
- #region File Description
- //-----------------------------------------------------------------------------
- // AssemblyInfo.cs
- //
- // Microsoft XNA Community Game Platform
- // Copyright (C) Microsoft Corporation. All rights reserved.
- //-----------------------------------------------------------------------------
- #endregion
- #region Using Statements
- using System.Reflection;
- using System.Runtime.CompilerServices;
- using System.Runtime.InteropServices;
- #endregion
- // General Information about an assembly is controlled through the following
- // set of attributes. Change these attribute values to modify the information
- // associated with an assembly.
- [assembly: AssemblyTitle("Audio 3D")]
- [assembly: AssemblyProduct("Audio 3D")]
- [assembly: AssemblyDescription("This sample shows how to position sounds in 3D space, implementing panning, Doppler, and distance attenuation effects.")]
- [assembly: AssemblyCompany("Microsoft")]
- [assembly: AssemblyCopyright("Copyright © Microsoft 2007")]
- [assembly: AssemblyTrademark("")]
- [assembly: AssemblyCulture("")]
- // Version information for an assembly consists of the following four values:
- //
- // Major Version
- // Minor Version
- // Build Number
- // Revision
- //
- [assembly: AssemblyVersion("1.0.0.0")]
|