Skip to main content

box3d_rust/types/
mod.rs

1// Port of public definition types from box3d-cpp-reference/include/box3d/types.h
2// and defaults from src/types.c. Split by domain; flat re-exports for callers.
3//
4// SPDX-FileCopyrightText: 2025 Erin Catto
5// SPDX-License-Identifier: MIT
6
7mod body;
8mod joint;
9mod shape;
10mod world;
11
12pub use body::*;
13pub use joint::*;
14pub use shape::*;
15pub use world::*;