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