mirror of
https://github.com/bevyengine/bevy
synced 2025-01-13 05:38:54 +00:00
6 lines
215 B
Rust
6 lines
215 B
Rust
|
use legion::world::World;
|
||
|
use wgpu::{CommandEncoder, Device, SwapChainOutput};
|
||
|
|
||
|
pub trait Pass {
|
||
|
fn render(&mut self, device: &Device, frame: &SwapChainOutput, encoder: &mut CommandEncoder, world: &mut World);
|
||
|
}
|