war 0.2.0

A viewer/editor for Darksiders saves, worlds, and scripts
Documentation
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),
}