Move game logic plugin configuration to game-specific plugin

This commit is contained in:
Michael Bradley 2025-05-25 22:29:20 -04:00
parent d6c4741582
commit 73ea0d6fd8
Signed by: MichaelBradley
SSH key fingerprint: SHA256:o/aaeYtRubILK7OYYjYP12DmU7BsPUhKji1AgaQ+ge4
10 changed files with 136 additions and 70 deletions

View file

@ -7,7 +7,7 @@ use bevy::prelude::*;
use rand::random;
/// Value with which to initialize the PRNG
#[derive(Resource, Clone, Copy)]
#[derive(Resource, Debug, Clone, Copy)]
pub struct Seed(u64);
impl Seed {