Files
herolib/lib/ui/template/factory.v
2024-12-25 08:40:56 +01:00

12 lines
131 B
V

module template
pub struct UIExample {
pub mut:
x_max int = 80
y_max int = 60
}
pub fn new() UIExample {
return UIExample{}
}