| 1234567891011121314151617181920212223242526272829 |
- #region File Description
- //-----------------------------------------------------------------------------
- // AssemblyInfo.cs
- //
- // Microsoft Game Technology Group
- // Copyright (C) Microsoft Corporation. All rights reserved.
- //-----------------------------------------------------------------------------
- #endregion
- #region Using Statements
- using System.Reflection;
- using System.Runtime.CompilerServices;
- using System.Runtime.InteropServices;
- #endregion
- //Descriptive Assembly attributes
- [assembly: AssemblyTitle("Triangle Picking")]
- [assembly: AssemblyProduct("Triangle Picking")]
- [assembly: AssemblyDescription("This sample extends the Picking sample with a more accurate picking algorithm, which tests against individual triangles that make up a mesh.")]
- [assembly: AssemblyCompany("Microsoft Corporation")]
- [assembly: AssemblyCopyright("Copyright © Microsoft 2008")]
- [assembly: AssemblyTrademark("")]
- [assembly: AssemblyCulture("")]
- [assembly: AssemblyVersion("1.0.0.0")]
- //ComVisible is false for this component.
- [assembly: ComVisible(false)]
- [assembly: Guid("844372b8-9af2-48b5-bf2d-e3fc2f7335c1")]
|