thomas 0.2.4

An ECS game engine.
Documentation
1
2
3
4
5
6
7
use crate::{Component, Coords2d};

/// Positional data for a 2D world.
#[derive(Component, Debug)]
pub struct Transform2d {
    pub coords: Coords2d,
}