physis 0.5.0

Library for reading and writing FFXIV data.
Documentation
// SPDX-FileCopyrightText: 2020 Inseok Lee
// SPDX-License-Identifier: MIT

#![allow(unused)] // This isn't public API, so I don't care about the unused bits.

extern crate alloc;

mod animation;
mod animation_binding;
mod animation_container;
mod binary_tag_file_reader;
mod byte_reader;
mod object;
mod skeleton;
mod slice_ext;
mod spline_compressed_animation;
mod transform;

pub use animation::HavokAnimation;
pub use animation_container::HavokAnimationContainer;
pub use binary_tag_file_reader::HavokBinaryTagFileReader;