Merge branch 'plugins' of https://github.com/schungx/rhai into plugins

This commit is contained in:
Stephen Chung
2020-08-14 13:40:33 +08:00
4 changed files with 72 additions and 57 deletions

View File

@@ -1,8 +1,11 @@
//! Module defining plugins in Rhai. Is exported for use by plugin authors.
use crate::stdlib::{any::TypeId, boxed::Box};
pub use crate::{
stdlib::any::TypeId,
stdlib::boxed::Box,
stdlib::vec::Vec,
stdlib::vec as new_vec,
stdlib::mem,
fn_native::CallableFunction,
Dynamic,
Engine,