summaryrefslogtreecommitdiff
path: root/src/components/serialise.rs
blob: aa79d93d5c848a37b56e6b558515d489fb8892c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16

use specs::{
	Component,
	DenseVecStorage
};
use crate::{
	Template,
	componentwrapper::ComponentType
};


#[derive(Component, Debug, Clone)]
pub struct Serialise {
	pub template: Template,
	pub extract: Vec<(String, ComponentType, String)>
}