summaryrefslogtreecommitdiff
path: root/ecs/src/actions.rs
diff options
context:
space:
mode:
authorHampusM <hampus@hampusmat.com>2024-12-11 13:52:34 +0100
committerHampusM <hampus@hampusmat.com>2024-12-11 13:52:34 +0100
commit33cc01562c4aef94e605c9dc675450031a840d72 (patch)
treedad9369cb63d637ac5b0f4abd6c36c57a800b9a8 /ecs/src/actions.rs
parent9e057e9249fb5a8a9f3b2ba00a993049f733c9dd (diff)
refactor(ecs): make system::Param trait not unsafe
Diffstat (limited to 'ecs/src/actions.rs')
-rw-r--r--ecs/src/actions.rs2
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 = ();