Difference between revisions of "ISInterface:NavigationAddConnection"

From Lavish Software Wiki
Jump to navigation Jump to search
 
 
Line 1: Line 1:
 
===Syntax===
 
===Syntax===
 
+
*bool NavigationAddConnection(char *World, char *From, char *To)
 
== Purpose ==
 
== Purpose ==
 
+
Adding a connection from point A to point B
 
== Usage ==
 
== Usage ==
 
=== Parameters ===
 
=== 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 ===
 
=== Return Value ===
 
+
*bool
 +
:Returns true on success, false on failure
 
== Examples ==
 
== Examples ==
 
+
*pISInterface->NavigationAddConnection("TestWorld","Point_1","Point_2");
  
 
== See Also ==
 
== See Also ==

Latest revision as of 03:46, 3 September 2005

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