/** * @file index.ts * @description This file serves as the main entry point for the skin3d library, exporting all necessary classes and functions. * @author Cosmic-fi * @license MIT */ export * from "./Model.js"; export { Render } from "./skin3d.js"; export * from "./skin3d.js"; export { PlayerAnimation, FunctionAnimation, IdleAnimation, WalkingAnimation, RunningAnimation, FlyingAnimation, WaveAnimation, CrouchAnimation, HitAnimation } from "./Animation.js"; export * from "./Animation.js"; export * from "./Nametag.js";