~starkingdoms/starkingdoms

ref: 69730b33b8aed64f6b26e6cdcb334a7cec4e54f4 starkingdoms/crates/unified/src/config/world.rs -rw-r--r-- 165 bytes
69730b33 — core planets 5 months ago
                                                                                
1
2
3
4
5
6
7
8
use bevy::asset::Asset;
use bevy::prelude::TypePath;
use serde::Deserialize;

#[derive(Deserialize, Asset, TypePath)]
pub struct WorldConfig {
    pub gravity: f64
}