typegraph/scripts/generic/new.gml

13 lines
220 B
Plaintext
Raw Permalink Normal View History

///new(ind)
/**
* new :: Class -> Instance
*
* Creates an instance of object `ind`.
*
* @param ind the object class of the desired instance
* @returns an instance id
*/
return instance_create(0, 0, argument0);