Rename assets crate to asset

This commit is contained in:
reo 2025-08-17 21:23:11 +03:00
parent 3458662cfc
commit 9816f14f53
7 changed files with 4 additions and 4 deletions

View file

@ -1,6 +0,0 @@
[package]
name = "raidillon_assets"
version = "0.1.0"
edition = "2024"
[dependencies]

View file

@ -1,3 +0,0 @@
pub mod model_manager;
pub use crate::model_manager::{ModelManager, ModelManagerRef};

View file

@ -1,14 +0,0 @@
use std::cell::RefCell;
use std::path::Path;
use std::rc::Rc;
pub type ModelManagerRef = Rc<RefCell<Box<dyn ModelManager>>>;
/// The asset manager trait of Raidillon.
pub trait ModelManager {
/// Loads a gltf model to VRAM.
fn load_gltf(&mut self, path: &Path);
/// Unloads the loaded model from VRAM.
fn unload_model(&mut self, path: &Path);
}