conniecs 0.2.0

A simple ECS system based off of the `ecs` crate, but with some minor API adjustments and derive macros for implementing most of the boilerplate. Make sure to include the `conniecs-derive` crate as well.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! TODO: Add documentation including describing how the derive macros work

pub trait ServiceManager: 'static {
    #[doc(hidden)]
    fn __please_use_the_derive_attribute();
}

impl ServiceManager for () {
    #[doc(hidden)]
    fn __please_use_the_derive_attribute() {}
}