Files
among-me/src/bevy_plugin.rs
LorrensP-2158466 ec5c4b6205 fix bug
2025-04-05 19:45:58 +02:00

16 lines
398 B
Rust

use bevy::prelude::*;
/// Overrides the default Bevy plugins and configures things like the screen settings.
pub(super) fn plugin(app: &mut App) {
app.add_plugins(
DefaultPlugins.set(WindowPlugin {
primary_window: Window {
title: "Among Me".into(),
..default()
}
.into(),
..default()
}),
);
}