Remove unnecessary default.
This commit is contained in:
parent
bd899b9c8e
commit
df3e72909c
10
src/map.rs
10
src/map.rs
|
@ -78,19 +78,11 @@ impl ITileType for Tile {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Clone, Debug)]
|
#[derive(Clone, Debug, Default)]
|
||||||
pub struct MapConfig {
|
pub struct MapConfig {
|
||||||
pub start_revealed: bool,
|
pub start_revealed: bool,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl Default for MapConfig {
|
|
||||||
fn default() -> Self {
|
|
||||||
Self {
|
|
||||||
start_revealed: false,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#[derive(Bundle, Default)]
|
#[derive(Bundle, Default)]
|
||||||
pub struct PortalBundle {
|
pub struct PortalBundle {
|
||||||
pub portal: Portal,
|
pub portal: Portal,
|
||||||
|
|
Loading…
Reference in New Issue
Block a user