sfml 0.25.1

Rust binding for sfml
Documentation
1
2
3
4
5
6
7
8
9
//! Types for interfacing with C++

mod fbox;
mod string;
mod vector;

pub use {fbox::FBox, string::CppString, vector::CppVector};
pub(crate) use {fbox::RawDefault, vector::CppVectorItem};
pub(crate) type CppStringVector = CppVector<CppString>;