pub trait ModelEntry {
    // Required methods
    fn allocation(&self) -> &Allocation;
    fn lod_model(&self, lod: usize) -> Option<SubModel<'_, TerrainVertex>>;
    fn atlas_textures(&self) -> &AtlasTextures<Locals, FigureSpriteAtlasData>;
}

Required Methods§

Implementors§