Skip to content

MyFunction

Athanatos edited this page Jun 23, 2019 · 2 revisions

Adds two values and sets the third one.

Behiavour

Array[2] = Array[0] + Array[1];

Definition

void DLLEXPORT MyFunction(float *args)
{
	args[2] = args[0] + args[1];
}

Notes

This function is used as a basic example and is it not meant for 'serious' usage.

Clone this wiki locally