//! Representation of a Roblox model in memory. The entire model is an [`RbxModel`], which contains
//! [`Instances`](Instance). These should be matched on to retrieve kind-specific data. If the
//! system doesn't recognize the class of an instance, it uses a special kind called
//! [`Other`](Instance::Other), which contains the classname and a raw set of
//! [`Properties`](Property).
pub use *;
pub use *;
pub use Error;
pub use Instance;
pub use Property;
pub use RbxModel;