Summary
A very simple timer system based on a 
		System.Diagnostics.Stopwatch.- Assembly
- Animancer.dll 
- Namespace
- Animancer
- Interfaces
- 
									- IDisposable
 
- Base Types
- 
									- ValueType
 
							graph BT
	Type-->Base0["ValueType"]
	Type-.->Interface0["IDisposable"]
	Type["SimpleTimer"]
class Type type-node
						
					Syntax
public struct SimpleTimer : ValueType, IDisposableConstructors
| Name | Summary | 
|---|---|
| SimpleTimer | Creates a new Animancer.SimpleTimerwith the specified `name`. | 
Fields
| Name | Constant Value | Summary | 
|---|---|---|
| name | An optional prefix for  Animancer.SimpleTimer.ToString. | |
| startTime | The  Animancer.SimpleTimer.CurrentTimefrom when this timer instance was started. | |
| Stopwatch | The system used to track time. static | |
| total | The total amount of time this timer instance has been running (in seconds). | 
Properties
| Name | Value | Summary | 
|---|---|---|
| CurrentTime | double | The amount of time that has passed (in seconds) since the first timer was started. static | 
| IsStarted | bool | Has  Animancer.SimpleTimer.Startbeen called andAnimancer.SimpleTimer.Stopnot? | 
Methods
| Name | Value | Summary | 
|---|---|---|
| Dispose | void | Calls  Animancer.SimpleTimer.ToStringand logs the result. | 
| Start | bool | 
    Stores the  Animancer.SimpleTimer.CurrentTimeinAnimancer.SimpleTimer.startTimeso thatAnimancer.SimpleTimer.Stopwill be able to
    calculate how much time has passed. | 
| Start | SimpleTimer | Creates a new  Animancer.SimpleTimerwith the specified `name` and starts it.static | 
| Stop | bool | 
    Adds the amount of time that has passed since the  Animancer.SimpleTimer.startTimeto theAnimancer.SimpleTimer.totaland
    clears theAnimancer.SimpleTimer.startTime. | 
| ToString | string | Calls  Animancer.SimpleTimer.Stopand returns a string representation of theAnimancer.SimpleTimer.total. |