1
0
forked from Mirror/wren
Files
wren/src/module/timer.h
Bob Nystrom ea5c3b01eb Add module for Scheduler.
Also reorganizes some code to make it easier to add more modules.
2015-09-13 11:32:39 -07:00

10 lines
176 B
C

#ifndef timer_h
#define timer_h
#include "wren.h"
WrenForeignMethodFn timerBindForeign(
WrenVM* vm, const char* className, bool isStatic, const char* signature);
#endif