thallium_ecs 0.6.0

The ECS for the thallium crate
Documentation
1
2
3
4
5
6
7
8
9
use crate::Resource;

pub struct ResourceContainer<R>
where
    R: Resource,
{
    pub(crate) resource: R,
    pub(crate) last_modified_tick: u64,
}