thomas 0.2.4

An ECS game engine.
Documentation
1
2
3
4
5
6
7
8
use crate::Component;

/// Identifying information that can be used to give entities meaningful identifying factors.
#[derive(Component, Debug)]
pub struct Identity {
  pub id: String,
  pub name: String,
}