logo
1
2
3
4
5
6
7
use super::{Disposable, Pauseable, Updateable};

/// The Process represents the smallest atom of the framework.
/// 
/// Many managers will implement this interface.
///
pub trait Process: Updateable + Disposable + Pauseable {}