ignis 0.1.0

A library for editing various 3DSFE formats.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use super::properties::*;
use linked_hash_map::LinkedHashMap;
use serde::{Deserialize, Serialize};

#[derive (Serialize, Deserialize, Debug, Clone)]
pub struct IgnisStruct {
    properties: LinkedHashMap<String, Property>
}

impl IgnisStruct {
    pub fn new() -> Self {
        IgnisStruct {
            properties: LinkedHashMap::new()
        }
    }
}