mod emit;
mod lower;
mod mappings;
mod names;
mod plan;
mod templates;
pub use emit::{CSharpEmitter, CSharpOutput};
pub use names::NamingConvention;
pub use plan::*;
use boltffi_ffi_rules::naming::{LibraryName, Name};
#[derive(Debug, Clone, Default)]
pub struct CSharpOptions {
pub library_name: Option<Name<LibraryName>>,
}