api changes

This commit is contained in:
awtterpip
2023-12-27 19:04:21 -06:00
parent ffa9e6d080
commit fd5323069f
8 changed files with 90 additions and 13 deletions

View File

@@ -1,4 +1,11 @@
pub mod api;
//! Abstracted API over WebXR and OpenXR
//!
//! This crate is intended to be used as a common API for cross platform projects. It was primarily
//! made for use in Bevy, but can be used elsewhere.
//!
//! To get started, create an [Entry] with [Entry](Entry#method.new)
mod api;
pub mod api_traits;
pub mod backend;
pub mod error;
@@ -10,3 +17,5 @@ pub mod prelude {
pub use super::error::*;
pub use super::types::*;
}
pub use api::*;