C# Class SadConsole.Consoles.AnimatedTextSurface.AnimationStateChangedEventArgs

Event args for when the animation state changes
Inheritance: System.EventArgs
Show file Open project: Thraka/SadConsole

Public Properties

Property Type Description
NewState AnimationState
PreviousState AnimationState

Public Methods

Method Description
AnimationStateChangedEventArgs ( AnimationState previousState, AnimationState newState ) : System

Creates a new instance of the event args.

Method Details

AnimationStateChangedEventArgs() public method

Creates a new instance of the event args.
public AnimationStateChangedEventArgs ( AnimationState previousState, AnimationState newState ) : System
previousState AnimationState The previous state.
newState AnimationState The new state.
return System

Property Details

NewState public property

The new state.
public AnimationState NewState
return AnimationState

PreviousState public property

The previous state.
public AnimationState PreviousState
return AnimationState