shaders/lib.rs
1#![deny(missing_docs)]
2
3//! Shaders for game development in Rust
4//!
5//! This library is intended only for reexporting various shaders
6//! that are useful for game development.
7//!
8//! Libraries should depend directly on the specific shader library.
9
10pub extern crate shaders_graphics2d as graphics2d;
11