rocketsplash-rt 0.2.2

Runtime library for loading and rendering Rocketsplash assets (.rst, .rsf)
Documentation
// <FILE>crates/rocketsplash-rt/src/text_style.rs</FILE>
// <DESC>Text style flags for runtime rendering</DESC>
// <VERS>VERSION: 1.0.0</VERS>
// <WCTX>Runtime library implementation</WCTX>
// <CLOG>Add TextStyle bitflags for render styling</CLOG>

use bitflags::bitflags;

bitflags! {
    #[derive(Clone, Copy, Debug, Default, PartialEq, Eq)]
    pub struct TextStyle: u8 {
        const BOLD = 0b0001;
        const ITALIC = 0b0010;
        const UNDERLINE = 0b0100;
        const REVERSE = 0b1000;
    }
}

// <FILE>crates/rocketsplash-rt/src/text_style.rs</FILE>
// <VERS>END OF VERSION: 1.0.0</VERS>