violet 0.0.1

Retained mode GUI library
Documentation
1
2
3
4
5
6
7
8
9
10
use std::ops::{Deref, DerefMut};

use flax::World;

use crate::executor::Spawner;

pub struct Frame {
    pub world: World,
    pub spawner: Spawner<Self>,
}