| 1 | #ifndef wren_opt_random_h |
|---|---|
| 2 | #define wren_opt_random_h |
| 3 | |
| 4 | #include "wren_common.h" |
| 5 | #include "wren.h" |
| 6 | |
| 7 | #if WREN_OPT_RANDOM |
| 8 | |
| 9 | const char* wrenRandomSource(); |
| 10 | WrenForeignClassMethods wrenRandomBindForeignClass(WrenVM* vm, |
| 11 | const char* module, |
| 12 | const char* className); |
| 13 | WrenForeignMethodFn wrenRandomBindForeignMethod(WrenVM* vm, |
| 14 | const char* className, |
| 15 | bool isStatic, |
| 16 | const char* signature); |
| 17 | |
| 18 | #endif |
| 19 | |
| 20 | #endif |
| 21 |