Details | Last modification | View Log | RSS feed
| Rev | Author | Line No. | Line |
|---|---|---|---|
| 1452 | chris | 1 | #region License |
| 2 | // |
||
| 3 | // The Open Toolkit Library License |
||
| 4 | // |
||
| 5 | // Copyright (c) 2006 - 2009 the Open Toolkit library. |
||
| 6 | // |
||
| 7 | // Permission is hereby granted, free of charge, to any person obtaining a copy |
||
| 8 | // of this software and associated documentation files (the "Software"), to deal |
||
| 9 | // in the Software without restriction, including without limitation the rights to |
||
| 10 | // use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of |
||
| 11 | // the Software, and to permit persons to whom the Software is furnished to do |
||
| 12 | // so, subject to the following conditions: |
||
| 13 | // |
||
| 14 | // The above copyright notice and this permission notice shall be included in all |
||
| 15 | // copies or substantial portions of the Software. |
||
| 16 | // |
||
| 17 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, |
||
| 18 | // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES |
||
| 19 | // OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND |
||
| 20 | // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT |
||
| 21 | // HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, |
||
| 22 | // WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING |
||
| 23 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR |
||
| 24 | // OTHER DEALINGS IN THE SOFTWARE. |
||
| 25 | // |
||
| 26 | #endregion |
||
| 27 | |||
| 28 | using System; |
||
| 29 | |||
| 30 | namespace OpenTK |
||
| 31 | { |
||
| 32 | /// <summary> |
||
| 33 | /// Defines the arguments for frame events. |
||
| 34 | /// A FrameEventArgs instance is only valid for the duration of the relevant event; |
||
| 35 | /// do not store references to FrameEventArgs outside this event. |
||
| 36 | /// </summary> |
||
| 37 | public class FrameEventArgs : EventArgs |
||
| 38 | { |
||
| 39 | double elapsed; |
||
| 40 | |||
| 41 | /// <summary> |
||
| 42 | /// Constructs a new FrameEventArgs instance. |
||
| 43 | /// </summary> |
||
| 44 | public FrameEventArgs() |
||
| 45 | { } |
||
| 46 | |||
| 47 | /// <summary> |
||
| 48 | /// Constructs a new FrameEventArgs instance. |
||
| 49 | /// </summary> |
||
| 50 | /// <param name="elapsed">The amount of time that has elapsed since the previous event, in seconds.</param> |
||
| 51 | public FrameEventArgs(double elapsed) |
||
| 52 | { |
||
| 53 | Time = elapsed; |
||
| 54 | } |
||
| 55 | |||
| 56 | /// <summary> |
||
| 57 | /// Gets a <see cref="System.Double"/> that indicates how many seconds of time elapsed since the previous event. |
||
| 58 | /// </summary> |
||
| 59 | public double Time |
||
| 60 | { |
||
| 61 | get { return elapsed; } |
||
| 62 | internal set |
||
| 63 | { |
||
| 64 | if (value <= 0) |
||
| 65 | throw new ArgumentOutOfRangeException(); |
||
| 66 | elapsed = value; |
||
| 67 | } |
||
| 68 | } |
||
| 69 | } |
||
| 70 | } |