thomas 0.2.4

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

/// Positional data for a 3D world.
#[derive(Component, Debug)]
pub struct Transform {
  pub coords: Coords3d,
}