SharedTaskImp

Trait SharedTaskImp 

Source
pub trait SharedTaskImp<TIndex, TTaskData: Send + 'static> {
    // Required method
    fn register_task_internal(
        &self,
        index: TIndex,
        task: &RecurringTask<TTaskData>,
    );
}
Expand description

The trait shared by task implementations across FSW games.

Required Methods§

Source

fn register_task_internal(&self, index: TIndex, task: &RecurringTask<TTaskData>)

Directly calls the internal task registration function. Users should not call this directly.

Implementors§