2015-03-22 22:16:53 +01:00
|
|
|
#ifndef wren_meta_h
|
|
|
|
|
#define wren_meta_h
|
|
|
|
|
|
|
|
|
|
#include "wren_common.h"
|
|
|
|
|
|
2015-04-04 06:22:58 +02:00
|
|
|
#include "wren.h"
|
|
|
|
|
|
2015-03-22 22:16:53 +01:00
|
|
|
// This module defines the Meta class and its associated methods.
|
2015-10-16 03:08:56 +02:00
|
|
|
#if WREN_USE_META_MODULE
|
2015-03-22 22:16:53 +01:00
|
|
|
|
2015-10-16 03:08:56 +02:00
|
|
|
void wrenLoadMetaModule(WrenVM* vm);
|
2015-03-22 22:16:53 +01:00
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#endif
|