C# Class AutoSharpporting.AutoLevel

Automatically levels skills.
Datei anzeigen Open project: myo/Experimental Class Usage Examples

Public Methods

Method Description
AutoLevel ( IEnumerable levels ) : System

Initializes a new instance of the AutoLevel class.

Disable ( ) : void

Disables this instance.

Enable ( ) : void

Enables this instance.

Enabled ( bool b ) : void

Sets if this instance is enabled or not according to the b.

GetSequence ( ) : int[]

Gets the sequence.

GetSequenceFromDb ( ) : int[]
GetSequenceList ( ) : List

Gets the sequence list.

UpdateSequence ( IEnumerable levels ) : void

Updates the sequence.

Private Methods

Method Description
Game_OnGameUpdate ( EventArgs args ) : void

Fired when the game updates.

GetTotalPoints ( ) : int

Gets the total points.

Init ( ) : void

Initializes this instance.

Method Details

AutoLevel() public method

Initializes a new instance of the AutoLevel class.
public AutoLevel ( IEnumerable levels ) : System
levels IEnumerable The levels.
return System

Disable() public static method

Disables this instance.
public static Disable ( ) : void
return void

Enable() public method

Enables this instance.
public Enable ( ) : void
return void

Enabled() public static method

Sets if this instance is enabled or not according to the b.
public static Enabled ( bool b ) : void
b bool if set to true [b].
return void

GetSequence() public static method

Gets the sequence.
public static GetSequence ( ) : int[]
return int[]

GetSequenceFromDb() public static method

public static GetSequenceFromDb ( ) : int[]
return int[]

GetSequenceList() public static method

Gets the sequence list.
public static GetSequenceList ( ) : List
return List

UpdateSequence() public static method

Updates the sequence.
public static UpdateSequence ( IEnumerable levels ) : void
levels IEnumerable The levels.
return void