You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
641 B
C
21 lines
641 B
C
|
3 years ago
|
#ifndef wren_opt_random_h
|
||
|
|
#define wren_opt_random_h
|
||
|
|
|
||
|
|
#include "wren_common.h"
|
||
|
|
#include "wren.h"
|
||
|
|
|
||
|
|
#if WREN_OPT_RANDOM
|
||
|
|
|
||
|
|
const char* wrenRandomSource();
|
||
|
|
WrenForeignClassMethods wrenRandomBindForeignClass(WrenVM* vm,
|
||
|
|
const char* module,
|
||
|
|
const char* className);
|
||
|
|
WrenForeignMethodFn wrenRandomBindForeignMethod(WrenVM* vm,
|
||
|
|
const char* className,
|
||
|
|
bool isStatic,
|
||
|
|
const char* signature);
|
||
|
|
|
||
|
|
#endif
|
||
|
|
|
||
|
|
#endif
|