1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
use crate::darksiders1::gfc;

pub struct Resource {
    pub name: String,
    pub ext: String,
    pub data: Vec<u8>,
}

pub enum ResourceData {
    Object(gfc::Object),
}