C# Class SadConsole.Consoles.AnimatedTextSurface.AnimationStateChangedEventArgs

Event args for when the animation state changes
Inheritance: System.EventArgs
显示文件 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_oe property

The new state.
public AnimationState NewState
return AnimationState

PreviousState public_oe property

The previous state.
public AnimationState PreviousState
return AnimationState