rocketsplash-rt 0.2.2

Runtime library for loading and rendering Rocketsplash assets (.rst, .rsf)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// <FILE>crates/rocketsplash-rt/src/align.rs</FILE>
// <DESC>Horizontal alignment options for text rendering</DESC>
// <VERS>VERSION: 1.0.0</VERS>
// <WCTX>Runtime library implementation</WCTX>
// <CLOG>Add Align enum for layout configuration</CLOG>

/// Horizontal alignment for multi-line rendering.
#[derive(Clone, Copy, Debug, Default, PartialEq, Eq)]
pub enum Align {
    #[default]
    Left,
    Center,
    Right,
}

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