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.
|
|
|
|
|
#if WREN_USE_LIB_META
|
|
|
|
|
|
|
|
|
|
void wrenLoadMetaLibrary(WrenVM* vm);
|
|
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#endif
|