texel_types 2.0.0

Types for Texel ASCII art text editor
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use specs::{Component, VecStorage};

impl Component for crate::Position {
    type Storage = VecStorage<Self>;
}

impl Component for crate::Position2D {
    type Storage = VecStorage<Self>;
}

impl Component for crate::Dimension {
    type Storage = VecStorage<Self>;
}

impl Component for crate::Sprite {
    type Storage = VecStorage<Self>;
}