game.rs 144 B

12345
  1. /// The shared values that the game state needs, mostly contained in
  2. /// the specs ECS world
  3. pub struct MyGame {
  4. pub world: specs::World,
  5. }