tin 0.3.0

tin: a statically structurally typed embeddable programming language
Documentation
1
2
3
4
5
6
7
8
9
10
use specs;

use specs::Component;
use specs::HashMapStorage;

#[derive(Component, Debug, VisitEntities, VisitEntitiesMut)]
#[storage(HashMapStorage)]
pub struct Replacement {
    pub to: specs::Entity,
}