ISInterface:NavigationAddConnection

From Lavish Software Wiki
Jump to navigation Jump to search

Syntax

  • bool NavigationAddConnection(char *World, char *From, char *To)

Purpose

Adding a connection from point A to point B

Usage

Parameters

  • char *World
[in] World the points are in
  • char *From
[in] Connection will be made from this point (this is point A)
  • char *To
[in] Connection will be made to this point (this is point B)

Return Value

  • bool
Returns true on success, false on failure

Examples

  • pISInterface->NavigationAddConnection("TestWorld","Point_1","Point_2");

See Also