diff options
author | HampusM <hampus@hampusmat.com> | 2024-12-11 13:52:34 +0100 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2024-12-11 13:52:34 +0100 |
commit | 33cc01562c4aef94e605c9dc675450031a840d72 (patch) | |
tree | dad9369cb63d637ac5b0f4abd6c36c57a800b9a8 /ecs/src/actions.rs | |
parent | 9e057e9249fb5a8a9f3b2ba00a993049f733c9dd (diff) |
refactor(ecs): make system::Param trait not unsafe
Diffstat (limited to 'ecs/src/actions.rs')
-rw-r--r-- | ecs/src/actions.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ecs/src/actions.rs b/ecs/src/actions.rs index 0878067..1ed49a8 100644 --- a/ecs/src/actions.rs +++ b/ecs/src/actions.rs @@ -92,7 +92,7 @@ impl<'world> Actions<'world> } } -unsafe impl<'world> SystemParam<'world> for Actions<'world> +impl<'world> SystemParam<'world> for Actions<'world> { type Flags = NoInitParamFlag; type Input = (); |