classNum Function

Retrieves the ID of the specified class.


int classNum(class class)

Parameter

Description

class

The class for which to retrieve the ID.

The ID of the specified class.

static void classNumExample(Args _args)
{
    int i;
    ;
    i = classNum(Global);
    print i;
    pause;
}

Community Additions

ADD
Show: