use ash::vk;
pub mod vulkan;
pub trait Renderable {
fn render(device: &vulkan::VkDevice, command_buffer: vk::CommandBuffer);
}