See that box in the top-left corner of the dialog?
It's a tree containing some functions.
MMFInterface
|_Runtime
...|_PauseRuntime()
Runtime.PauseRuntime() is saved in a namespace called...
Type: Posts; User: Looki; Keyword(s):
See that box in the top-left corner of the dialog?
It's a tree containing some functions.
MMFInterface
|_Runtime
...|_PauseRuntime()
Runtime.PauseRuntime() is saved in a namespace called...
Oh, sorry, still not correct.
Put it into a class and add "public" before "void"
using MMFInterface;
public class class1 {
void TestFunction ()
{
Runtime.PauseRuntime();
}
}