lambda_platform/gfx/
resource.rs

1use super::Instance;
2
3pub trait Resource<ResourceOwner> {
4  fn delete(self, instance: &mut ResourceOwner);
5}