bevy_decorum 0.0.2

A highly customizable window decoration plugin for the Bevy engine, inspired by tauri-plugin-decorum
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
mod systems;

use bevy::prelude::*;

pub use systems::*;

/// Decorum APIs
#[derive(Resource, Default)]
pub struct Decorum {}

impl Decorum {}

/// Decorum Settings
#[derive(Resource, Default)]
pub struct DecorumSettings {
    pub windows: Vec<Entity>,
}