summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHampusM <hampus@hampusmat.com>2024-04-06 13:52:13 +0200
committerHampusM <hampus@hampusmat.com>2024-04-06 13:52:13 +0200
commite5b5990549a2de8a8de4729bc62517f39f3101c8 (patch)
treea36672fce9018b55e3016cce25465937d673b0ad
parent519a73f83848ea668fe79895e6643cff4c5c51be (diff)
chore(ecs): change Action visibility to pub(crate)
-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 4507e71..c58b06b 100644
--- a/ecs/src/actions.rs
+++ b/ecs/src/actions.rs
@@ -60,7 +60,7 @@ unsafe impl<'world> SystemParam<'world> for Actions<'world>
/// A action for a [`System`] to perform.
#[derive(Debug)]
-pub enum Action
+pub(crate) enum Action
{
Spawn(Vec<Box<dyn Component>>),
}