change Name from VSystem to System

This commit is contained in:
Marcel Märtens
2021-03-08 12:13:59 +01:00
parent 989d130692
commit f353f14703
39 changed files with 118 additions and 121 deletions

View File

@ -18,8 +18,8 @@ use common::{
self,
behavior::{CharacterBehavior, JoinData, JoinStruct},
},
system::{Job, Origin, Phase, System},
uid::Uid,
vsystem::{Origin, Phase, VJob, VSystem},
};
use std::time::Duration;
@ -73,7 +73,7 @@ pub struct ReadData<'a> {
#[derive(Default)]
pub struct Sys;
impl<'a> VSystem<'a> for Sys {
impl<'a> System<'a> for Sys {
#[allow(clippy::type_complexity)]
type SystemData = (
ReadData<'a>,
@ -93,7 +93,7 @@ impl<'a> VSystem<'a> for Sys {
#[allow(clippy::while_let_on_iterator)] // TODO: Pending review in #587
fn run(
_job: &mut VJob<Self>,
_job: &mut Job<Self>,
(
read_data,
mut character_states,