15 lines
228 B
C
Raw Normal View History

#ifndef wren_meta_h
#define wren_meta_h
#include "wren.h"
#include "wren_common.h"
// This module defines the Meta class and its associated methods.
#if WREN_USE_LIB_META
void wrenLoadMetaLibrary(WrenVM* vm);
#endif
#endif