9 lines
182 B
Rust
9 lines
182 B
Rust
|
|
//! Sprite batch rendering system.
|
||
|
|
//! 精灵批处理渲染系统。
|
||
|
|
|
||
|
|
mod sprite_batch;
|
||
|
|
mod vertex;
|
||
|
|
|
||
|
|
pub use sprite_batch::SpriteBatch;
|
||
|
|
pub use vertex::{SpriteVertex, VERTEX_SIZE};
|