Vp create: Difference between revisions

From Virtual Paradise Wiki
Jump to navigation Jump to search
m (-cat)
m (method templates)
Line 7: Line 7:
instance = vp_create();</C>
instance = vp_create();</C>
|seealso=
|seealso=
* [[vp_connect_universe]]
* {{sdk method|connect_universe}}
* [[vp_destroy]]
* {{sdk method|destroy}}
* [[vp_login]]
* {{sdk method|login}}
}}
}}

Revision as of 15:01, 30 September 2013

Method call snippet vp_create();

Creates a VPInstance in memory for use with connecting to a world or universe.

Parameters

These are the parameters that this method requires:

Parameter Usage


Returns

A pointer to the newly created instance, or NULL if something went wrong whilst trying to create one.

Behavior

There is no special behavior for this method

Examples

<C>VPInstance instance; instance = vp_create();</C>

See also