thomas 0.2.4

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

/// Positional data for a world in the terminal where it's 2D and strictly gridded.
#[derive(Component, Debug)]
pub struct TerminalTransform {
  pub coords: IntCoords2d,
}