rastor 0.1.13

A terminal-based game engine
Documentation
1
2
3
4
5
6
7
8
9
10
11
use crate::ui::style::border::Border;

pub struct ContainerStyle {
    pub border: Option<Border>,
}

impl ContainerStyle {
    pub fn new(border: Option<Border>) -> Self {
        Self { border }
    }
}