123456789101112131415161718192021222324252627282930 |
- #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
- //Descriptive Assembly attributes
- [assembly: AssemblyTitle("Bloom Postprocess")]
- [assembly: AssemblyProduct("Bloom Postprocess")]
- [assembly: AssemblyDescription("This sample shows how to use bloom post-processing filters to add a glow effect over the top of an existing scene.")]
- [assembly: AssemblyCompany("Microsoft")]
- [assembly: AssemblyCopyright("Copyright © Microsoft 2007")]
- [assembly: AssemblyTrademark("")]
- [assembly: AssemblyCulture("")]
- [assembly: AssemblyVersion("1.0.0.0")]
- //ComVisible is false for this component.
- [assembly: ComVisible(false)]
- [assembly: Guid("01a21a09-e2a4-473d-bc16-d7f157cc1c78")]
|