13 lines
203 B
Rust
13 lines
203 B
Rust
use crate::graphics::Vertex;
|
|
|
|
pub struct UI {
|
|
|
|
}
|
|
impl UI {
|
|
pub fn new() -> Self {
|
|
Self {}
|
|
}
|
|
pub fn render(&self, vertices: &mut Vec<Vertex>, indices: &mut Vec<u32>) {
|
|
|
|
}
|
|
} |