optima 0.0.4

An easy to set up and easy optimization and planning toolbox, particularly for robotics.
Documentation
1
2
3
4
5
6
7
8
9
10
use bevy::prelude::ResMut;

pub struct EngineSystems;
impl EngineSystems {
    pub fn system_frame_counter(mut frame_count: ResMut<FrameCount>) {
        frame_count.0 += 1;
    }
}

pub struct FrameCount(pub usize);