pkecs 9.0.0

Another ECS implementation.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Contains common system schedules.

/// A schedule for systems which run once at application startup.
pub struct Startup;

/// A schedule for systems which run each application loop.
pub struct Update;

/// A schedule which runs at a fixed interval.
pub struct FixedUpdate;

/// A schedule which runs on application exit.
pub struct Shutdown;