2024-04-03 21:07:54 +02:00
|
|
|
pub use crate::graphics::Image;
|
|
|
|
|
|
2024-04-07 14:01:05 +02:00
|
|
|
#[derive(Debug, Default)]
|
2024-04-03 21:07:54 +02:00
|
|
|
pub struct Batch;
|
|
|
|
|
|
|
|
|
|
impl Batch {
|
|
|
|
|
pub fn push(&mut self, _image: Image) {}
|
|
|
|
|
|
|
|
|
|
pub fn clear(&mut self) {}
|
2025-04-30 01:30:53 +02:00
|
|
|
|
|
|
|
|
pub fn is_empty(&self) -> bool {
|
|
|
|
|
true
|
|
|
|
|
}
|
2024-04-03 21:07:54 +02:00
|
|
|
}
|