This site has been archived and made available for preservation purposes. No edits can be made.

GetBase

(Difference between revisions)
Return to current revision
  1. -
    Retrieves the base of an [[Object]].

    == Declaration ==
    <code cpp>
    VAULTSCRIPT vaultmp::Base (*GetBase)(vaultmp::ID);
    native GetBase(ID);
    </code>
    == Parameters ==

    '''[[ID|vaultmp::ID]]''' - the ID of the [[Object]]

    == Return value ==

    Returns a [[Base|vaultmp::Base]] containing the base.

    == Usage example (C++) ==

    <code cpp>
    vaultmp::Base baseID;
    baseID = GetBase(object);
    </code>