matrix_engine 0.2.4

a small game engine developed by drmatrix
Documentation
1
2
3
4
5
6
7
use wgpu::{BindGroupEntry, BindGroupLayoutEntry};

pub trait MatrixBindable {
    fn bind_layout_entry(binding:u32) -> BindGroupLayoutEntry;

    fn bind_entry(&self,binding:u32) -> BindGroupEntry;
}