Difference between revisions of "ISInterface:NavigationRemoveConnection"
Jump to navigation
Jump to search
Line 1: | Line 1: | ||
===Syntax=== | ===Syntax=== | ||
− | + | *void NavigationRemoveConnection(char *World, char *From, char *To) | |
== Purpose == | == Purpose == | ||
− | + | To remove a connection from point A to point B in a world | |
== Usage == | == Usage == | ||
=== Parameters === | === Parameters === | ||
− | + | *char *World | |
− | + | :'''[in]''' Name of the world the points are in | |
+ | *char *From | ||
+ | :'''[in]''' Name of the point to remove the connection from (point A) | ||
+ | *char *To | ||
+ | :'''[in]''' Name of the point to remove the connection from (point B) | ||
== Examples == | == Examples == | ||
− | + | *pISInterface->NavigationRemoveConnection("TestWorld","Point_1","Point_2"); | |
== See Also == | == See Also == |
Latest revision as of 03:53, 3 September 2005
Syntax
- void NavigationRemoveConnection(char *World, char *From, char *To)
Purpose
To remove a connection from point A to point B in a world
Usage
Parameters
- char *World
- [in] Name of the world the points are in
- char *From
- [in] Name of the point to remove the connection from (point A)
- char *To
- [in] Name of the point to remove the connection from (point B)
Examples
- pISInterface->NavigationRemoveConnection("TestWorld","Point_1","Point_2");