C# Class PandaTeemoReborn.AutoShroom

Show file Open project: KarmaPanda/EloBuddy Class Usage Examples

Public Properties

Property Type Description
PlayerAssignedShroomPosition List
ShroomPosition List

Public Methods

Method Description
AddShroomLocation ( Vector3 position ) : void

Adds a position to Player Assigned List

AddShroomLocations ( List positions ) : void

Adds positions given a list.

Initialize ( ) : void

Initializes AutoShroom

RemoveShroomLocation ( Vector3 position ) : void

Removes a position from Player Assigned List

RemoveShroomLocations ( List positions ) : void

Removes positions given a list.

SavePositions ( ) : void

Saves all Player Assigned positions to a file.

Private Methods

Method Description
AssignPosition ( ) : void

Assigns Player Assigned Positions to the addon

AssignPosition ( Vector3 position ) : void

Assigns given position to the addon

AutoShroom ( ) : System.Collections.Generic

To Avoid Multiple Initialize Calls.

LoadDefaultPositions ( ) : void

Loads in Positions saved in addon

LoadPositions ( ) : void

Loads in positions saved on file

Method Details

AddShroomLocation() public static method

Adds a position to Player Assigned List
public static AddShroomLocation ( Vector3 position ) : void
position Vector3
return void

AddShroomLocations() public static method

Adds positions given a list.
public static AddShroomLocations ( List positions ) : void
positions List
return void

Initialize() public static method

Initializes AutoShroom
public static Initialize ( ) : void
return void

RemoveShroomLocation() public static method

Removes a position from Player Assigned List
public static RemoveShroomLocation ( Vector3 position ) : void
position Vector3
return void

RemoveShroomLocations() public static method

Removes positions given a list.
public static RemoveShroomLocations ( List positions ) : void
positions List
return void

SavePositions() public static method

Saves all Player Assigned positions to a file.
public static SavePositions ( ) : void
return void

Property Details

PlayerAssignedShroomPosition public static property

Holds all the Shroom Positions that was assigned by players.
public static List PlayerAssignedShroomPosition
return List

ShroomPosition public static property

Holds all the Shroom Positions that will be used by Auto Shroom.
public static List ShroomPosition
return List