Interface IMinimapElement
Element that can be added to the background of the minimap.
Namespace: nickmaltbie.MinimapTools.Background
Assembly: cs.temp.dll.dll
Syntax
public interface IMinimapElement
Methods
DrawOnBackground(IMinimap, Texture2D)
Draw this element on the background of a minimap.
Declaration
void DrawOnBackground(IMinimap minimap, Texture2D backgroundTexture)
Parameters
Type | Name | Description |
---|---|---|
IMinimap | minimap | Minimap for getting space of element. |
Texture2D | backgroundTexture | Background texture to draw minimap onto. |
GetOrder()
Get the order that this element should be drawn on the background.
Declaration
int GetOrder()
Returns
Type | Description |
---|---|
Int32 | Integer representing order with lowest number taking priority. |