Show More
Commit Description:
Calculate entry fees and apply to budget....
Commit Description:
Calculate entry fees and apply to budget.
Incorporate simplistic model of fees.
References:
File last commit:
Show/Diff file:
Action:
FNA/src/Graphics/IGraphicsDeviceService.cs
28 lines | 603 B | text/x-csharp | CSharpLexer
28 lines | 603 B | text/x-csharp | CSharpLexer
r0 | #region License | |||
/* FNA - XNA4 Reimplementation for Desktop Platforms | ||||
r690 | * Copyright 2009-2022 Ethan Lee and the MonoGame Team | |||
r0 | * | |||
* Released under the Microsoft Public License. | ||||
* See LICENSE for details. | ||||
*/ | ||||
#endregion | ||||
#region Using Statements | ||||
using System; | ||||
#endregion | ||||
namespace Microsoft.Xna.Framework.Graphics | ||||
{ | ||||
public interface IGraphicsDeviceService | ||||
{ | ||||
GraphicsDevice GraphicsDevice | ||||
{ | ||||
get; | ||||
} | ||||
event EventHandler<EventArgs> DeviceCreated; | ||||
event EventHandler<EventArgs> DeviceDisposing; | ||||
event EventHandler<EventArgs> DeviceReset; | ||||
event EventHandler<EventArgs> DeviceResetting; | ||||
} | ||||
} | ||||