@@ -35,7 +35,7 @@ impl Storages {
35
35
/// - `Archetypes` and `Components` must come from the world this of this `Storages`
36
36
/// - the caller must ensure that no aliasing rules are violated
37
37
#[ inline]
38
- pub unsafe fn get_component_and_ticks_with_type (
38
+ pub ( crate ) unsafe fn get_component_and_ticks_with_type (
39
39
& self ,
40
40
archetypes : & Archetypes ,
41
41
components : & Components ,
@@ -58,7 +58,7 @@ impl Storages {
58
58
/// - `Archetypes` and `Components` must come from the world this of this `Storages`
59
59
/// - the caller must ensure that no aliasing rules are violated
60
60
#[ inline]
61
- pub unsafe fn get_component_and_ticks (
61
+ pub ( crate ) unsafe fn get_component_and_ticks (
62
62
& self ,
63
63
archetypes : & Archetypes ,
64
64
component_id : ComponentId ,
@@ -93,7 +93,7 @@ impl Storages {
93
93
/// - `Archetypes` and `Components` must come from the world this of this `Storages`
94
94
/// - the caller must ensure that no aliasing rules are violated
95
95
#[ inline]
96
- pub unsafe fn get_component_with_type (
96
+ pub ( crate ) unsafe fn get_component_with_type (
97
97
& self ,
98
98
archetypes : & Archetypes ,
99
99
components : & Components ,
@@ -117,7 +117,7 @@ impl Storages {
117
117
/// - `Archetypes` and `Components` must come from the world this of this `Storages`
118
118
/// - the caller must ensure that no aliasing rules are violated
119
119
#[ inline]
120
- pub unsafe fn get_component (
120
+ pub ( crate ) unsafe fn get_component (
121
121
& self ,
122
122
archetypes : & Archetypes ,
123
123
component_id : ComponentId ,
@@ -146,7 +146,7 @@ impl Storages {
146
146
/// - `Archetypes` and `Components` must come from the world this of this `Storages`
147
147
/// - the caller must ensure that no aliasing rules are violated
148
148
#[ inline]
149
- pub unsafe fn get_ticks_with_type (
149
+ pub ( crate ) unsafe fn get_ticks_with_type (
150
150
& self ,
151
151
archetypes : & Archetypes ,
152
152
components : & Components ,
@@ -170,7 +170,7 @@ impl Storages {
170
170
/// - `Archetypes` and `Components` must come from the world this of this `Storages`
171
171
/// - the caller must ensure that no aliasing rules are violated
172
172
#[ inline]
173
- pub unsafe fn get_ticks (
173
+ pub ( crate ) unsafe fn get_ticks (
174
174
& self ,
175
175
archetypes : & Archetypes ,
176
176
component_id : ComponentId ,
0 commit comments