@ecsframework/core 0.4.5 → 0.4.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -30,16 +30,16 @@ do
30
30
  return add(self.world, entity, object, key)
31
31
  end
32
32
  function BaseSystem:AddPairStatic(entity, key)
33
- return add(self.world, entity, key, "$ecsframework:core:framework/flamecs/registry@Tag")
33
+ return add(self.world, entity, key)
34
34
  end
35
35
  function BaseSystem:AddComponent(entity, key)
36
- return add(self.world, entity, key, "$ecsframework:core:framework/flamecs/registry@Tag")
36
+ return add(self.world, entity, key)
37
37
  end
38
38
  function BaseSystem:SetPairRuntime(entity, object, value, key)
39
39
  return set(self.world, entity, object, value, key)
40
40
  end
41
41
  function BaseSystem:SetPairStatic(entity, value, key)
42
- return set(self.world, entity, value, key, "$p:never")
42
+ return set(self.world, entity, value, key)
43
43
  end
44
44
  function BaseSystem:SetComponent(entity, argument1, argument2, argument3)
45
45
  local classComponent = self:GetClassComponent(argument2)
@@ -96,28 +96,28 @@ do
96
96
  return remove(self.world, entity, object, key)
97
97
  end
98
98
  function BaseSystem:RemovePairStatic(entity, key)
99
- return remove(self.world, entity, key, "@rbxts/compiler-types:types/core@$p:error")
99
+ return remove(self.world, entity, key)
100
100
  end
101
101
  function BaseSystem:RemoveComponent(entity, key)
102
- return remove(self.world, entity, key, "@rbxts/compiler-types:types/core@$p:error")
102
+ return remove(self.world, entity, key)
103
103
  end
104
104
  function BaseSystem:GetPairRuntime(entity, object, key)
105
105
  return get(self.world, entity, object, key)
106
106
  end
107
107
  function BaseSystem:GetComponent(entity, key)
108
- return get(self.world, entity, key, "@rbxts/compiler-types:types/core@$p:error")
108
+ return get(self.world, entity, key)
109
109
  end
110
110
  function BaseSystem:HasPairRuntime(entity, object, key)
111
111
  return has(self.world, entity, object, key)
112
112
  end
113
113
  function BaseSystem:HasComponent(entity, key)
114
- return has(self.world, entity, key, "@rbxts/compiler-types:types/core@$p:error")
114
+ return has(self.world, entity, key)
115
115
  end
116
116
  function BaseSystem:TargetComponent(entity, key)
117
117
  return target(self.world, entity, key)
118
118
  end
119
119
  function BaseSystem:ParentComponent(entity)
120
- return target(self.world, entity, "$ecsframework:core:framework/flamecs/registry@ChildOf")
120
+ return target(self.world, entity)
121
121
  end
122
122
  function BaseSystem:GetAllClassComponents()
123
123
  return Reflect.getOwnMetadata(BaseSystem, "ECSFramework:Components") or ({})
@@ -43,7 +43,7 @@ export declare const worldSignals: Map<ecs.World, {
43
43
  * @template T - The type of the component.
44
44
  * @param key - Flamework autogenerated key for the component.
45
45
  * @returns A signal that fires when the component is added to any entity.
46
- * @metadata macro
46
+
47
47
  */
48
48
  export declare function added<T>(registery: ecs.World, key?: ComponentKey<T>): Signal<[Entity<T>, T]>;
49
49
  /**
@@ -52,7 +52,7 @@ export declare function added<T>(registery: ecs.World, key?: ComponentKey<T>): S
52
52
  * @template T - The type of the component.
53
53
  * @param key - Flamework autogenerated key for the component.
54
54
  * @returns A signal that fires when the component is removed from any entity.
55
- * @metadata macro
55
+
56
56
  */
57
57
  export declare function removed<T>(registery: ecs.World, key?: ComponentKey<T>): Signal<[Entity<T>]>;
58
58
  /**
@@ -62,7 +62,7 @@ export declare function removed<T>(registery: ecs.World, key?: ComponentKey<T>):
62
62
  * @param key - Flamework autogenerated key for the component.
63
63
  * @returns A signal that fires when the component's value changes on any
64
64
  * entity.
65
- * @metadata macro
65
+
66
66
  */
67
67
  export declare function changed<T>(registery: ecs.World, key?: ComponentKey<T>): Signal<[entity: Entity<T>, data: T, prevData: T]>;
68
68
  export declare function hookListeners(registry: ecs.World, id: Entity): void;
@@ -72,7 +72,7 @@ export declare function hookListeners(registry: ecs.World, id: Entity): void;
72
72
  * @template T - The type of the component.
73
73
  * @param runtimeId - The runtime entity to be registered.
74
74
  * @param key - Flamework autogenerated key.
75
- * @metadata macro
75
+
76
76
  */
77
77
  export declare function reserve<T>(registry: ecs.World | undefined, runtimeId: Entity<Unwrap<T>>, key?: ComponentKey<T>): void;
78
78
  /**
@@ -85,7 +85,7 @@ export declare function reserve<T>(registry: ecs.World | undefined, runtimeId: E
85
85
  * @template T - The type of the component.
86
86
  * @param key - Flamework autogenerated key.
87
87
  * @returns The component entity ID.
88
- * @metadata macro
88
+
89
89
  */
90
90
  export declare function component<T>(registry?: ecs.World, key?: ComponentKey<T>): Entity<Unwrap<T>>;
91
91
  /**
@@ -94,7 +94,7 @@ export declare function component<T>(registry?: ecs.World, key?: ComponentKey<T>
94
94
  * @template T - The type of the component.
95
95
  * @param key - Flamework autogenerated key or pair key.
96
96
  * @returns The component or pair ID.
97
- * @metadata macro.
97
+ .
98
98
  */
99
99
  export declare function getId<T>(registry?: ecs.World, key?: ResolveKey<T>): Id<ResolveValue<T>>;
100
100
  export declare function getKey<T>(runtimeId: Entity): T | undefined;
@@ -102,7 +102,7 @@ export declare function getKey<T>(runtimeId: Entity): T | undefined;
102
102
  * Creates a new empty entity.
103
103
  *
104
104
  * @returns The created entity.
105
- * @metadata macro
105
+
106
106
  */
107
107
  export declare function spawn(registry: ecs.World): ecs.Tag;
108
108
  /**
@@ -111,7 +111,7 @@ export declare function spawn(registry: ecs.World): ecs.Tag;
111
111
  * @template T - The type of the components.
112
112
  * @param keys - Flamework autogenerated keys.
113
113
  * @returns The created entity.
114
- * @metadata macro
114
+
115
115
  */
116
116
  export declare function spawn<T extends Array<Tag>>(registry: ecs.World, keys?: ResolveKeys<T>): ecs.Tag;
117
117
  /**
@@ -121,7 +121,7 @@ export declare function spawn<T extends Array<Tag>>(registry: ecs.World, keys?:
121
121
  * @param values - The values to set for the components.
122
122
  * @param keys - Flamework autogenerated keys.
123
123
  * @returns The created entity.
124
- * @metadata macro
124
+
125
125
  */
126
126
  export declare function spawn<T extends Array<unknown>>(registry: ecs.World, values: TrailingUndefined<ResolveValues<T>>, keys?: ResolveKeys<T>): ecs.Tag;
127
127
  /**
@@ -136,7 +136,7 @@ export declare function despawn(registry: ecs.World, entity: Entity): void;
136
136
  * @template T - The type of the components.
137
137
  * @param entity - The entity to modify.
138
138
  * @param keys - Flamework autogenerated keys.
139
- * @metadata macro
139
+
140
140
  */
141
141
  export declare function insert<T extends Array<Tag>>(registry: ecs.World, entity: Entity, keys?: ResolveKeys<T>): void;
142
142
  /**
@@ -146,7 +146,7 @@ export declare function insert<T extends Array<Tag>>(registry: ecs.World, entity
146
146
  * @param entity - The entity to modify.
147
147
  * @param values - The values to set for the components.
148
148
  * @param keys - Flamework autogenerated keys.
149
- * @metadata macro
149
+
150
150
  */
151
151
  export declare function insert<T extends Array<unknown>>(registry: ecs.World, entity: Entity, values: TrailingUndefined<ResolveValues<T>>, keys?: ResolveKeys<T>): void;
152
152
  /**
@@ -156,7 +156,7 @@ export declare function insert<T extends Array<unknown>>(registry: ecs.World, en
156
156
  * @param entity - The entity to which the pair relationship is added.
157
157
  * @param object - The target entity of the relationship (object of the pair).
158
158
  * @param key - Flamework autogenerated key.
159
- * @metadata macro
159
+
160
160
  */
161
161
  export declare function add<T extends Pair<Tag>>(registry: ecs.World, entity: Entity, object: Entity, key?: ComponentKey<ExtractPredicate<T>>): void;
162
162
  /**
@@ -166,7 +166,7 @@ export declare function add<T extends Pair<Tag>>(registry: ecs.World, entity: En
166
166
  * @template T - The type of the pair.
167
167
  * @param entity - The entity to which the pair component is added.
168
168
  * @param key - Flamework autogenerated key.
169
- * @metadata macro
169
+
170
170
  */
171
171
  export declare function add<T extends Pair<Tag, defined>>(registry: ecs.World, entity: Entity, key?: ResolveKey<T>): void;
172
172
  /**
@@ -175,7 +175,7 @@ export declare function add<T extends Pair<Tag, defined>>(registry: ecs.World, e
175
175
  * @template T - The type of the component.
176
176
  * @param entity - The entity to which the component is added.
177
177
  * @param key - Flamework autogenerated key.
178
- * @metadata macro
178
+
179
179
  */
180
180
  export declare function add<T extends Tag>(registry: ecs.World, entity: Entity, key?: ComponentKey<T>): void;
181
181
  /**
@@ -185,7 +185,7 @@ export declare function add<T extends Tag>(registry: ecs.World, entity: Entity,
185
185
  * @param entity - The entity from which the pair relationship is removed.
186
186
  * @param object - The target entity of the relationship (object of the pair).
187
187
  * @param key - Flamework autogenerated key.
188
- * @metadata macro
188
+
189
189
  */
190
190
  export declare function remove<T extends Pair<defined>>(registry: ecs.World, entity: Entity, object: Entity, key?: ComponentKey<ExtractPredicate<T>>): void;
191
191
  /**
@@ -195,7 +195,7 @@ export declare function remove<T extends Pair<defined>>(registry: ecs.World, ent
195
195
  * @template T - The type of the pair.
196
196
  * @param entity - The entity from which the pair component is removed.
197
197
  * @param key - Flamework autogenerated key.
198
- * @metadata macro
198
+
199
199
  */
200
200
  export declare function remove<T extends Pair<defined, defined>>(registry: ecs.World, entity: Entity, key?: ResolveKey<T>): void;
201
201
  /**
@@ -204,7 +204,7 @@ export declare function remove<T extends Pair<defined, defined>>(registry: ecs.W
204
204
  * @template T - The type of the component.
205
205
  * @param entity - The entity from which the component is removed.
206
206
  * @param key - Flamework autogenerated key.
207
- * @metadata macro
207
+
208
208
  */
209
209
  export declare function remove<T>(registry: ecs.World, entity: Entity, key?: ComponentKey<T>): void;
210
210
  /**
@@ -215,7 +215,7 @@ export declare function remove<T>(registry: ecs.World, entity: Entity, key?: Com
215
215
  * @param object - The target entity of the relationship (object of the pair).
216
216
  * @param value - The value associated with the pair relationship.
217
217
  * @param key - Flamework autogenerated key.
218
- * @metadata macro
218
+
219
219
  */
220
220
  export declare function set<T extends Pair<defined>>(registry: ecs.World, entity: Entity, object: Entity, value: ResolveValue<T>, key?: ComponentKey<ExtractPredicate<T>>): void;
221
221
  /**
@@ -226,7 +226,7 @@ export declare function set<T extends Pair<defined>>(registry: ecs.World, entity
226
226
  * @param entity - The entity to which the pair component is added.
227
227
  * @param value - The value associated with the pair component.
228
228
  * @param key - Flamework autogenerated key.
229
- * @metadata macro
229
+
230
230
  */
231
231
  export declare function set<T extends Pair<defined, defined>>(registry: ecs.World, entity: Entity, value: ResolveValue<T>, key?: ResolveKey<T>): void;
232
232
  /**
@@ -236,7 +236,6 @@ export declare function set<T extends Pair<defined, defined>>(registry: ecs.Worl
236
236
  * @param entity - The entity to which the component is added or updated.
237
237
  * @param value - The value associated with the component.
238
238
  * @param key - Flamework autogenerated key.
239
- * @metadata macro
240
239
  */
241
240
  export declare function set<T>(registry: ecs.World, entity: Entity, value: Unwrap<T>, key?: ComponentKey<T>): void;
242
241
  /**
@@ -247,7 +246,6 @@ export declare function set<T>(registry: ecs.World, entity: Entity, value: Unwra
247
246
  * @param object - The target entity of the relationship (object of the pair).
248
247
  * @param key - Flamework autogenerated key.
249
248
  * @returns The value associated with the pair relationship.
250
- * @metadata macro
251
249
  */
252
250
  export declare function get<T extends Pair<defined>>(registry: ecs.World, entity: Entity, object: Entity, key?: ComponentKey<ExtractPredicate<T>>): ResolveValue<T> | undefined;
253
251
  /**
@@ -257,7 +255,6 @@ export declare function get<T extends Pair<defined>>(registry: ecs.World, entity
257
255
  * @param entity - The entity from which to retrieve the component or pair.
258
256
  * @param key - Flamework autogenerated key.
259
257
  * @returns The value associated with the component or pair.
260
- * @metadata macro
261
258
  */
262
259
  export declare function get<T>(registry: ecs.World, entity: Entity, key?: ResolveKey<T>): ResolveValue<T> | undefined;
263
260
  /**
@@ -268,7 +265,7 @@ export declare function get<T>(registry: ecs.World, entity: Entity, key?: Resolv
268
265
  * @param object - The target entity of the relationship (object of the pair).
269
266
  * @param key - Flamework autogenerated key.
270
267
  * @returns True if the pair relationship exists, false otherwise.
271
- * @metadata macro
268
+
272
269
  */
273
270
  export declare function has<T extends Pair<defined>>(registry: ecs.World, entity: Entity, object: Entity, key?: ComponentKey<ExtractPredicate<T>>): boolean;
274
271
  /**
@@ -278,7 +275,7 @@ export declare function has<T extends Pair<defined>>(registry: ecs.World, entity
278
275
  * @param entity - The entity to check for the component or pair.
279
276
  * @param key - Flamework autogenerated key.
280
277
  * @returns True if the component or pair exists, false otherwise.
281
- * @metadata macro
278
+
282
279
  */
283
280
  export declare function has<T>(registry: ecs.World, entity: Entity, key?: ResolveKey<T>): boolean;
284
281
  /**
@@ -289,7 +286,7 @@ export declare function has<T>(registry: ecs.World, entity: Entity, key?: Resolv
289
286
  * @param entity - The entity to get the target for.
290
287
  * @param key - Flamework autogenerated key.
291
288
  * @returns The target entity if a relationship exists, or undefined otherwise.
292
- * @metadata macro
289
+
293
290
  */
294
291
  export declare function target<T>(registry: ecs.World, entity: Entity, key?: ComponentKey<T>): Entity | undefined;
295
292
  /**
@@ -308,7 +305,7 @@ export declare function parent(registry: ecs.World, entity: Entity): Entity | un
308
305
  * @param object - The object entity.
309
306
  * @param predicate - The predicate component key.
310
307
  * @returns The pair ID.
311
- * @metadata macro
308
+
312
309
  */
313
310
  export declare function pair<P>(registry: ecs.World, object: Entity, predicate?: ComponentKey<P>): Pair<Unwrap<P>, unknown>;
314
311
  export declare function initWorld(registry: ecs.World): void;
@@ -13,7 +13,7 @@ local worldSignals = {}
13
13
  * @template T - The type of the component.
14
14
  * @param key - Flamework autogenerated key for the component.
15
15
  * @returns A signal that fires when the component is added to any entity.
16
- * @metadata macro
16
+
17
17
 
18
18
  ]]
19
19
  local component
@@ -29,7 +29,7 @@ end
29
29
  * @template T - The type of the component.
30
30
  * @param key - Flamework autogenerated key for the component.
31
31
  * @returns A signal that fires when the component is removed from any entity.
32
- * @metadata macro
32
+
33
33
 
34
34
  ]]
35
35
  local function removed(registery, key)
@@ -45,7 +45,7 @@ end
45
45
  * @param key - Flamework autogenerated key for the component.
46
46
  * @returns A signal that fires when the component's value changes on any
47
47
  * entity.
48
- * @metadata macro
48
+
49
49
 
50
50
  ]]
51
51
  local function changed(registery, key)
@@ -110,7 +110,7 @@ end
110
110
  * @template T - The type of the component.
111
111
  * @param runtimeId - The runtime entity to be registered.
112
112
  * @param key - Flamework autogenerated key.
113
- * @metadata macro
113
+
114
114
 
115
115
  ]]
116
116
  local function reserve(registry, runtimeId, key)
@@ -152,7 +152,7 @@ end
152
152
  * @template T - The type of the component.
153
153
  * @param key - Flamework autogenerated key.
154
154
  * @returns The component entity ID.
155
- * @metadata macro
155
+
156
156
 
157
157
  ]]
158
158
  function component(registry, key)
@@ -188,7 +188,7 @@ end
188
188
  * @template T - The type of the component.
189
189
  * @param key - Flamework autogenerated key or pair key.
190
190
  * @returns The component or pair ID.
191
- * @metadata macro.
191
+ .
192
192
 
193
193
  ]]
194
194
  local function getId(registry, key)
@@ -212,7 +212,7 @@ end
212
212
  * Creates a new empty entity.
213
213
  *
214
214
  * @returns The created entity.
215
- * @metadata macro
215
+
216
216
 
217
217
  ]]
218
218
  --[[
@@ -222,7 +222,7 @@ end
222
222
  * @template T - The type of the components.
223
223
  * @param keys - Flamework autogenerated keys.
224
224
  * @returns The created entity.
225
- * @metadata macro
225
+
226
226
 
227
227
  ]]
228
228
  --[[
@@ -233,7 +233,7 @@ end
233
233
  * @param values - The values to set for the components.
234
234
  * @param keys - Flamework autogenerated keys.
235
235
  * @returns The created entity.
236
- * @metadata macro
236
+
237
237
 
238
238
  ]]
239
239
  local function spawn(registry, argument1, argument2)
@@ -277,7 +277,7 @@ end
277
277
  * @template T - The type of the components.
278
278
  * @param entity - The entity to modify.
279
279
  * @param keys - Flamework autogenerated keys.
280
- * @metadata macro
280
+
281
281
 
282
282
  ]]
283
283
  --[[
@@ -288,7 +288,7 @@ end
288
288
  * @param entity - The entity to modify.
289
289
  * @param values - The values to set for the components.
290
290
  * @param keys - Flamework autogenerated keys.
291
- * @metadata macro
291
+
292
292
 
293
293
  ]]
294
294
  local function insert(registry, entity, argument1, argument2)
@@ -323,7 +323,7 @@ end
323
323
  * @param entity - The entity to which the pair relationship is added.
324
324
  * @param object - The target entity of the relationship (object of the pair).
325
325
  * @param key - Flamework autogenerated key.
326
- * @metadata macro
326
+
327
327
 
328
328
  ]]
329
329
  --[[
@@ -334,7 +334,7 @@ end
334
334
  * @template T - The type of the pair.
335
335
  * @param entity - The entity to which the pair component is added.
336
336
  * @param key - Flamework autogenerated key.
337
- * @metadata macro
337
+
338
338
 
339
339
  ]]
340
340
  --[[
@@ -344,7 +344,7 @@ end
344
344
  * @template T - The type of the component.
345
345
  * @param entity - The entity to which the component is added.
346
346
  * @param key - Flamework autogenerated key.
347
- * @metadata macro
347
+
348
348
 
349
349
  ]]
350
350
  local function add(registry, entity, argument1, argument2)
@@ -367,7 +367,7 @@ end
367
367
  * @param entity - The entity from which the pair relationship is removed.
368
368
  * @param object - The target entity of the relationship (object of the pair).
369
369
  * @param key - Flamework autogenerated key.
370
- * @metadata macro
370
+
371
371
 
372
372
  ]]
373
373
  --[[
@@ -378,7 +378,7 @@ end
378
378
  * @template T - The type of the pair.
379
379
  * @param entity - The entity from which the pair component is removed.
380
380
  * @param key - Flamework autogenerated key.
381
- * @metadata macro
381
+
382
382
 
383
383
  ]]
384
384
  --[[
@@ -388,7 +388,7 @@ end
388
388
  * @template T - The type of the component.
389
389
  * @param entity - The entity from which the component is removed.
390
390
  * @param key - Flamework autogenerated key.
391
- * @metadata macro
391
+
392
392
 
393
393
  ]]
394
394
  local function remove(registry, entity, argument1, argument2)
@@ -412,7 +412,7 @@ end
412
412
  * @param object - The target entity of the relationship (object of the pair).
413
413
  * @param value - The value associated with the pair relationship.
414
414
  * @param key - Flamework autogenerated key.
415
- * @metadata macro
415
+
416
416
 
417
417
  ]]
418
418
  --[[
@@ -424,7 +424,7 @@ end
424
424
  * @param entity - The entity to which the pair component is added.
425
425
  * @param value - The value associated with the pair component.
426
426
  * @param key - Flamework autogenerated key.
427
- * @metadata macro
427
+
428
428
 
429
429
  ]]
430
430
  --[[
@@ -435,7 +435,6 @@ end
435
435
  * @param entity - The entity to which the component is added or updated.
436
436
  * @param value - The value associated with the component.
437
437
  * @param key - Flamework autogenerated key.
438
- * @metadata macro
439
438
 
440
439
  ]]
441
440
  local function set(registry, entity, argument1, argument2, argument3)
@@ -461,7 +460,6 @@ end
461
460
  * @param object - The target entity of the relationship (object of the pair).
462
461
  * @param key - Flamework autogenerated key.
463
462
  * @returns The value associated with the pair relationship.
464
- * @metadata macro
465
463
 
466
464
  ]]
467
465
  --[[
@@ -472,7 +470,6 @@ end
472
470
  * @param entity - The entity from which to retrieve the component or pair.
473
471
  * @param key - Flamework autogenerated key.
474
472
  * @returns The value associated with the component or pair.
475
- * @metadata macro
476
473
 
477
474
  ]]
478
475
  local function get(registry, entity, argument1, argument2)
@@ -495,7 +492,7 @@ end
495
492
  * @param object - The target entity of the relationship (object of the pair).
496
493
  * @param key - Flamework autogenerated key.
497
494
  * @returns True if the pair relationship exists, false otherwise.
498
- * @metadata macro
495
+
499
496
 
500
497
  ]]
501
498
  --[[
@@ -506,7 +503,7 @@ end
506
503
  * @param entity - The entity to check for the component or pair.
507
504
  * @param key - Flamework autogenerated key.
508
505
  * @returns True if the component or pair exists, false otherwise.
509
- * @metadata macro
506
+
510
507
 
511
508
  ]]
512
509
  local function has(registry, entity, argument1, argument2)
@@ -529,7 +526,7 @@ end
529
526
  * @param entity - The entity to get the target for.
530
527
  * @param key - Flamework autogenerated key.
531
528
  * @returns The target entity if a relationship exists, or undefined otherwise.
532
- * @metadata macro
529
+
533
530
 
534
531
  ]]
535
532
  local function target(registry, entity, key)
@@ -546,7 +543,7 @@ end
546
543
 
547
544
  ]]
548
545
  local function parent(registry, entity)
549
- return target(registry, entity, "$ecsframework:core:framework/flamecs/registry@ChildOf")
546
+ return target(registry, entity)
550
547
  end
551
548
  --[[
552
549
  *
@@ -557,7 +554,7 @@ end
557
554
  * @param object - The object entity.
558
555
  * @param predicate - The predicate component key.
559
556
  * @returns The pair ID.
560
- * @metadata macro
557
+
561
558
 
562
559
  ]]
563
560
  local function pair(registry, object, predicate)
@@ -565,8 +562,8 @@ local function pair(registry, object, predicate)
565
562
  return ecs.pair(predicateId, object)
566
563
  end
567
564
  local function initWorld(registry)
568
- reserve(registry, ecs.Wildcard, "$ecsframework:core:framework/flamecs/registry@Wildcard")
569
- reserve(registry, ecs.ChildOf, "$ecsframework:core:framework/flamecs/registry@ChildOf")
565
+ reserve(registry, ecs.Wildcard)
566
+ reserve(registry, ecs.ChildOf)
570
567
  end
571
568
  return {
572
569
  added = added,
@@ -1 +1 @@
1
- {"program":{"fileNames":["../node_modules/@rbxts/t/lib/t.d.ts","../node_modules/@flamework/core/out/modding.d.ts","../node_modules/@flamework/core/out/utility.d.ts","../node_modules/@flamework/core/out/reflect.d.ts","../node_modules/@flamework/core/out/flamework.d.ts","../node_modules/@flamework/core/out/index.d.ts","../node_modules/@rbxts/jecs/jecs.d.ts","../node_modules/@rbxts/services/index.d.ts","../src/framework/flamecs/signal.ts","../src/framework/flamecs/registry.ts","../src/framework/flamecs/query.ts","../src/framework/flamecs/topo.ts","../src/framework/flamecs/index.ts","../src/framework/components/destroyed-component.ts","../src/framework/decorators/inject-type.ts","../src/framework/utilities.ts","../src/framework/hooks/query-change.ts","../node_modules/@rbxts/immut/src/none.d.ts","../node_modules/@rbxts/immut/src/makedraftsafe.d.ts","../node_modules/@rbxts/immut/src/makedraftsafereadonly.d.ts","../node_modules/@rbxts/immut/src/table.d.ts","../node_modules/@rbxts/immut/src/types-internal.d.ts","../node_modules/@rbxts/immut/src/types-external.d.ts","../node_modules/@rbxts/immut/src/index.d.ts","../src/framework/jecs-utils/query-changed.d.ts","../src/framework/hooks/query-changed.ts","../src/framework/base-system.ts","../src/framework/decorators/component.ts","../src/framework/decorators/system.ts","../src/framework/dependencies-container.ts","../node_modules/@rbxts/planck/out/utils.d.ts","../node_modules/@rbxts/planck/out/conditions.d.ts","../node_modules/@rbxts/planck/out/phase.d.ts","../node_modules/@rbxts/planck/out/pipeline.d.ts","../node_modules/@rbxts/planck/out/scheduler.d.ts","../node_modules/@rbxts/planck/out/index.d.ts","../node_modules/@rbxts/planck-runservice/out/index.d.ts","../src/framework/index.ts","../src/framework/decorators/unaffectable.ts","../src/framework/decorators/tagged.ts","../src/framework/components/roblox-instance-component.ts","../src/framework/systems/roblox-instance-system.ts","../src/framework/hooks/use-added.ts","../src/framework/hooks/use-removed.ts","../src/framework/hooks/use-changed.ts","../src/framework/hooks/use-event.ts","../src/framework/hooks/use-throttle.ts","../src/framework/jecs-utils/jecs-importer.ts","../src/index.ts","../node_modules/@rbxts/types/include/generated/enums.d.ts","../node_modules/@rbxts/types/include/generated/none.d.ts","../node_modules/@rbxts/types/include/lua.d.ts","../node_modules/@rbxts/types/include/macro_math.d.ts","../node_modules/@rbxts/types/include/roblox.d.ts","../node_modules/@rbxts/compiler-types/types/array.d.ts","../node_modules/@rbxts/compiler-types/types/callmacros.d.ts","../node_modules/@rbxts/compiler-types/types/iterable.d.ts","../node_modules/@rbxts/compiler-types/types/map.d.ts","../node_modules/@rbxts/compiler-types/types/promise.d.ts","../node_modules/@rbxts/compiler-types/types/set.d.ts","../node_modules/@rbxts/compiler-types/types/string.d.ts","../node_modules/@rbxts/compiler-types/types/symbol.d.ts","../node_modules/@rbxts/compiler-types/types/typeutils.d.ts","../node_modules/@rbxts/compiler-types/types/eslintignore.d.ts","../node_modules/@rbxts/compiler-types/types/core.d.ts","../node_modules/@rbxts/maid/maid.d.ts","../node_modules/@rbxts/object-utils/index.d.ts","../node_modules/@rbxts/signal/index.d.ts"],"fileInfos":[{"version":"429178068cb844a452dad87eb0a7a02466f3509fff9e7f1187fdb0595e66b8df","signature":false},{"version":"f984bb5cbefabad3e6279516673ca0cb2098304225cfe61987f2af81daf3f99a","signature":false},{"version":"5ed7aeb5909b9e1607087690870addc6df2d3d7e6e3e16f389fe21da53915526","signature":false},{"version":"1fe834c2d906a0d49917ce932bb495bfbb58912d49ad6b03f66ae0be14ad9def","signature":false},{"version":"99709374cb8bf64c65dad5350c88a805af91e107545e18af91e4839d4336a441","signature":false},{"version":"a1a226a8d6b1039d7d0613381c2f4dec614c30305cf96ee973cc49973d9745e4","signature":false},{"version":"1f0f6e103444aad5f544988f7a8390e351b30481ce6eac8ad7765911c56dda6e","signature":false},{"version":"9e6c13e0c00f23d1e9a40e4652ef4e604bdf6747feab7d7b7ca66b5d6bcfa330","signature":false},{"version":"cff894ef201eb519e33e59b861ceb3766076e4f371734218d331157a3b307a11","signature":false},{"version":"047c564d81915ef34ed7d437bd154ad73052e755277872da34479b77330e0f08","signature":false},{"version":"93ba2aced0dbbfbcc06e41012c390b9cf7323ead4cd08852b98ae926bea9f15e","signature":false},{"version":"c2b615b7c60bf38930966af14e64cc1ef33ed23ba0a77bdd8ea09fdc4f5e2683","signature":false},{"version":"3800f61fdda8762cb1f766f6badbc560a94853c8c6a21b67d8e0f746eb15926c","signature":false},{"version":"a3adf1732167824c54869e10749d1d5529167a6dbe6fca946e572fb871d40779","signature":false},{"version":"d067a12923433fce55f6f0a6c1d9cb940845dc0f65b1bc9285e83caa622256d5","signature":false},{"version":"4988bac9e48fcefb7dbc164a2aa624d33600eb53f57ed911208c94e1a3f1a871","signature":false},{"version":"f63d7cdd778a7ea18b0d61359ab48023b001d45096dfb759dc09a101c0c41a72","signature":false},{"version":"d9d14150234c32bc0bf772d69182b166d8de600e0e5207924867da19351aca53","signature":false},{"version":"1a73eb921b7aa92d4c2d86ec95a39f5f73cf170b939314394d1b87bd06ae707b","signature":false},{"version":"5e5db3fb2f4f1a4d5276b9ba8f78df1f5f73754eeae5e2c23028f7830a2b66f9","signature":false},{"version":"3a36f6c843d1b4e91f80d6ff3ef8b5e25e1948fae24b8c62631c5df1faf82e41","signature":false},{"version":"dba94b73dbbe23c5066eeafc9f4f8dbf4430a4ab73d2d0d251fe4c1cd029d90b","signature":false},{"version":"564a52d0f974d976d982a2385ac5b353329f2dadab4f7616ee303678a7f64134","signature":false},{"version":"ff329383f830b2ba7578f67a374e2b8077f0b3d7036bf4d1a24edcc95de45c5d","signature":false},{"version":"ae03613211b26c4c1c0133ad47ec159705ee634de31020e04f2156354ceb93c6","signature":false},{"version":"6112f176d9ff3ca2bce62080ace03d5e33b2a251eed6397d2aca8adb51cb863b","signature":false},{"version":"97be7e3059f97c430d3375db2db3cd20530f33a2872045bc4ea72092deedb809","signature":false},{"version":"006a579b2cba5f46bed75e9eeee7bdb50455232fa1bb585e0420ad9ddef4a683","signature":false},{"version":"afa4bcb1c950e70212cc4ccf83a6096a25bc4280fb03bf94157f2eea853fad15","signature":false},{"version":"d836c32683f074ffd9a72ef601846fae421827220ccd6a4256bbe6f9f46f6b4e","signature":false},{"version":"6012a8d5986c48029756e1c9ad5153f50af540e8aaa76ddf26ca860835857ce9","signature":false},{"version":"499ab101952e35989d138b092f00c4af72eeecbfc8e8f5cf66bedce4b6ad8d95","signature":false},{"version":"901e5e72e5541e609f179f0ac44db1a057a04c13b535504eb3ea9d59b44d7d1b","signature":false},{"version":"81e5cefd5ad881498e2a6ae98eabd1eae22432f569cf96e7d82dab79fd8399f5","signature":false},{"version":"008dae8f3575ffbef098e31624a1da2b0d5defe667df587db66401c3f8f686dc","signature":false},{"version":"c46bd205c2482e6063d0e411e9425b2a27954a700af9e40fc9b60d121951ad21","signature":false},{"version":"00c835dad309d5d7471f0e55193c146cf5fa5f03107c012e63b4d8f122acba34","signature":false},{"version":"d79cde4c87a511f7219963cdbd32ec32bc3de93b2ca943d6046c1c31e2a3ee62","signature":false},{"version":"531c125862ac8e801bca17eaacc89b21e0d49ef80a76bf7dbd09b006f3e27a4a","signature":false},{"version":"6acaf4af108a108b505c278208684baba2846a7187a713ce312d68f547c103e3","signature":false},{"version":"be4e6ec9fe788d72a70afbdc4c297ea31d842a9ea301559f5ca42cdf13db1383","signature":false},{"version":"fb6f1b9cefef803d680a42968a3b57fefdb28e84f82450489278f78b74d74a81","signature":false},{"version":"8d1395d7fa6381cf71368706cf815130a32895fddd44acb047751072801f90bb","signature":false},{"version":"cdeedec78d8c66fc7522d13e9a2150edda98b18fd3bb95d0f556b6678d0c3739","signature":false},{"version":"7e8bf6cb0c7e13b34a8b40c4b36e633d639b8c4a3b5dec3a55a08bf26caf9a6b","signature":false},{"version":"27b0c41f2f485e59eaaab0d65c192ca022d7fcea87b2c24c9405a91e8b7a4a79","signature":false},{"version":"20d034b52037a7e5b0268fde45a111ffa9f0ae2e04819549d677262711d9dcf2","signature":false},{"version":"5f584ea703e64b108be0108238bb46f8c74756bb49cd630a2fc2ecbfbfde9ca6","signature":false},{"version":"a4d759fd1b0f8396f7767c618e282f4f9a1732b902b54908c5bb26964b1e4281","signature":false},{"version":"6eb7fae75c4a1a6bdee1d48700000f43f9d5cff7987f08bd49f21ed1ac0b7c4b","signature":false,"affectsGlobalScope":true},{"version":"3a5626be0c9a1aae6f75d0d38bcea4d070e5d1381a843a9b4eafd3eab6ed7ef7","signature":false,"affectsGlobalScope":true},{"version":"f6c97e5b3403d6f8683372fff53430b8d93728a60f04623bd3de9e470fe71259","signature":false,"affectsGlobalScope":true},{"version":"bfb3f3bd1d89a54d975a7554c8d12209188d7b849d00b9345fd0d41d79858e38","signature":false,"affectsGlobalScope":true},{"version":"22f424c221d557a69d83386550a272558bfef6f81b1dbacd3d35b4651b128d2b","signature":false,"affectsGlobalScope":true},{"version":"d1461f750f98ba938cf3b43f1095774f6007b92a4550bbfde87451dccc32b3bd","signature":false,"affectsGlobalScope":true},{"version":"c30a7a2198451431d80de5f9ba7197a0c8a56d52b29373e7270115776a28f3f3","signature":false,"affectsGlobalScope":true},{"version":"d4d6595aca02f63e2107a842fdd8f79e147fd802acd0e60900f16bee4f861173","signature":false,"affectsGlobalScope":true},{"version":"2070e277f4e874747a7706f000f19f2f512f9829f65f4caf634a908c07f45117","signature":false,"affectsGlobalScope":true},{"version":"7f53343307db666fa6a82bf5165f961d4b70e268ffb7e4e108f06d953c10c679","signature":false,"affectsGlobalScope":true},{"version":"8d10b5097dc2692979a984b4c56deaa0ad77c3a7b036a066ea0a72ec8c514830","signature":false,"affectsGlobalScope":true},{"version":"a252fd9c3a3e55eab45c1c78d376e7a8d82e736d55a5d95a1b285290881d5f88","signature":false,"affectsGlobalScope":true},{"version":"dde6ecc6409a17b372382192ca43c78c52015f34f49547ead38194c63127793a","signature":false,"affectsGlobalScope":true},{"version":"ed7b23f234388de62c9f86bcecd4608a854067fc20f2b4698b9f14ce0d92f4f2","signature":false,"affectsGlobalScope":true},{"version":"85ce7d3110c6652c276ea4d027bc1887176d97a5b7494f288cbbdfb2b48a11ee","signature":false,"affectsGlobalScope":true},{"version":"52535c5f6ea63e76c537e39df77b0720827e3f8d0fac9e2386352f0b6110a211","signature":false,"affectsGlobalScope":true},{"version":"abfe7c34c18ff9a242d5b7e4aba61dfb14b2db55ce5edce1798aaae365fa9cfe","signature":false},{"version":"7b9707d4934d0b63c71920058db2bd6f815b90c4ace1100ea24915c14c9af895","signature":false},{"version":"f73b1d7270a91ed30c71075ee5e0472465931a37ecdb5834c9d8ebe828847b45","signature":false}],"root":[[9,17],[25,30],[38,49]],"options":{"allowSyntheticDefaultImports":true,"declaration":true,"downlevelIteration":true,"experimentalDecorators":true,"jsx":2,"module":1,"outDir":"./","rootDir":"../src","strict":true,"target":99,"tsBuildInfoFile":"./tsconfig.tsbuildinfo"},"fileIdsList":[[1,2,3],[2,4,5],[1,3],[3],[2],[54],[54,55,56,57,58,59,60,61,62,63,64],[18,21,22,23],[19,20],[22],[36],[31],[32,33,34,35],[33],[31,32,33,34,36],[50,54],[51,65],[50,51,52,53,65],[3,6,7,9,10,13,14,15,17,23,24,25,26,38],[13],[28],[3,6,7,16,27],[1,6],[3,6,16,27],[3,7,13,16,30],[6],[3,6,15,16],[10,11,12],[7,10],[6,7,9],[7,27],[6,7,10,13,14,16],[6,13,25],[6,10,13,16],[6,13],[3,6,7,8,9,10,13,16,27,28,29,30,36,37],[7],[7,8,10,15,16,27,29,30,40,41],[3,6,7,8,10,13,27],[13,14,15,16,17,27,28,29,30,38,39,40,41,42,43,44,45,46,47,48]],"referencedMap":[[5,1],[6,2],[2,3],[4,4],[3,5],[55,6],[56,6],[65,7],[64,6],[57,6],[58,6],[59,6],[60,6],[61,6],[62,6],[63,6],[24,8],[21,9],[23,10],[37,11],[32,12],[36,13],[34,14],[35,15],[50,6],[51,16],[52,17],[54,18],[27,19],[14,20],[41,21],[28,22],[15,23],[29,24],[40,25],[39,26],[30,27],[13,28],[11,29],[10,30],[12,31],[17,32],[26,33],[43,34],[45,34],[46,35],[44,34],[47,35],[38,36],[48,37],[25,37],[42,38],[16,39],[49,40]],"semanticDiagnosticsPerFile":[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68]},"version":"5.5.3"}
1
+ {"program":{"fileNames":["../node_modules/@rbxts/t/lib/t.d.ts","../node_modules/@flamework/core/out/modding.d.ts","../node_modules/@flamework/core/out/utility.d.ts","../node_modules/@flamework/core/out/reflect.d.ts","../node_modules/@flamework/core/out/flamework.d.ts","../node_modules/@flamework/core/out/index.d.ts","../node_modules/@rbxts/jecs/jecs.d.ts","../node_modules/@rbxts/services/index.d.ts","../src/framework/flamecs/signal.ts","../src/framework/flamecs/registry.ts","../src/framework/flamecs/query.ts","../src/framework/flamecs/topo.ts","../src/framework/flamecs/index.ts","../src/framework/components/destroyed-component.ts","../src/framework/decorators/inject-type.ts","../src/framework/utilities.ts","../src/framework/hooks/query-change.ts","../node_modules/@rbxts/immut/src/none.d.ts","../node_modules/@rbxts/immut/src/makedraftsafe.d.ts","../node_modules/@rbxts/immut/src/makedraftsafereadonly.d.ts","../node_modules/@rbxts/immut/src/table.d.ts","../node_modules/@rbxts/immut/src/types-internal.d.ts","../node_modules/@rbxts/immut/src/types-external.d.ts","../node_modules/@rbxts/immut/src/index.d.ts","../src/framework/jecs-utils/query-changed.d.ts","../src/framework/hooks/query-changed.ts","../src/framework/base-system.ts","../src/framework/decorators/component.ts","../src/framework/decorators/system.ts","../src/framework/dependencies-container.ts","../node_modules/@rbxts/planck/out/utils.d.ts","../node_modules/@rbxts/planck/out/conditions.d.ts","../node_modules/@rbxts/planck/out/phase.d.ts","../node_modules/@rbxts/planck/out/pipeline.d.ts","../node_modules/@rbxts/planck/out/scheduler.d.ts","../node_modules/@rbxts/planck/out/index.d.ts","../node_modules/@rbxts/planck-runservice/out/index.d.ts","../src/framework/index.ts","../src/framework/decorators/unaffectable.ts","../src/framework/decorators/tagged.ts","../src/framework/components/roblox-instance-component.ts","../src/framework/systems/roblox-instance-system.ts","../src/framework/hooks/use-added.ts","../src/framework/hooks/use-removed.ts","../src/framework/hooks/use-changed.ts","../src/framework/hooks/use-event.ts","../src/framework/hooks/use-throttle.ts","../src/framework/jecs-utils/jecs-importer.ts","../src/index.ts","../node_modules/@rbxts/types/include/generated/enums.d.ts","../node_modules/@rbxts/types/include/generated/none.d.ts","../node_modules/@rbxts/types/include/lua.d.ts","../node_modules/@rbxts/types/include/macro_math.d.ts","../node_modules/@rbxts/types/include/roblox.d.ts","../node_modules/@rbxts/compiler-types/types/array.d.ts","../node_modules/@rbxts/compiler-types/types/callmacros.d.ts","../node_modules/@rbxts/compiler-types/types/iterable.d.ts","../node_modules/@rbxts/compiler-types/types/map.d.ts","../node_modules/@rbxts/compiler-types/types/promise.d.ts","../node_modules/@rbxts/compiler-types/types/set.d.ts","../node_modules/@rbxts/compiler-types/types/string.d.ts","../node_modules/@rbxts/compiler-types/types/symbol.d.ts","../node_modules/@rbxts/compiler-types/types/typeutils.d.ts","../node_modules/@rbxts/compiler-types/types/eslintignore.d.ts","../node_modules/@rbxts/compiler-types/types/core.d.ts","../node_modules/@rbxts/maid/maid.d.ts","../node_modules/@rbxts/object-utils/index.d.ts","../node_modules/@rbxts/signal/index.d.ts"],"fileInfos":[{"version":"429178068cb844a452dad87eb0a7a02466f3509fff9e7f1187fdb0595e66b8df","signature":false},{"version":"f984bb5cbefabad3e6279516673ca0cb2098304225cfe61987f2af81daf3f99a","signature":false},{"version":"5ed7aeb5909b9e1607087690870addc6df2d3d7e6e3e16f389fe21da53915526","signature":false},{"version":"1fe834c2d906a0d49917ce932bb495bfbb58912d49ad6b03f66ae0be14ad9def","signature":false},{"version":"99709374cb8bf64c65dad5350c88a805af91e107545e18af91e4839d4336a441","signature":false},{"version":"a1a226a8d6b1039d7d0613381c2f4dec614c30305cf96ee973cc49973d9745e4","signature":false},{"version":"1f0f6e103444aad5f544988f7a8390e351b30481ce6eac8ad7765911c56dda6e","signature":false},{"version":"9e6c13e0c00f23d1e9a40e4652ef4e604bdf6747feab7d7b7ca66b5d6bcfa330","signature":false},{"version":"cff894ef201eb519e33e59b861ceb3766076e4f371734218d331157a3b307a11","signature":false},{"version":"2c3bf605c60de23b98a5d1b3c2a9842dfbe0d089ecbc6dd91b6916df0b521e51","signature":false},{"version":"93ba2aced0dbbfbcc06e41012c390b9cf7323ead4cd08852b98ae926bea9f15e","signature":false},{"version":"c2b615b7c60bf38930966af14e64cc1ef33ed23ba0a77bdd8ea09fdc4f5e2683","signature":false},{"version":"3800f61fdda8762cb1f766f6badbc560a94853c8c6a21b67d8e0f746eb15926c","signature":false},{"version":"a3adf1732167824c54869e10749d1d5529167a6dbe6fca946e572fb871d40779","signature":false},{"version":"d067a12923433fce55f6f0a6c1d9cb940845dc0f65b1bc9285e83caa622256d5","signature":false},{"version":"4988bac9e48fcefb7dbc164a2aa624d33600eb53f57ed911208c94e1a3f1a871","signature":false},{"version":"f63d7cdd778a7ea18b0d61359ab48023b001d45096dfb759dc09a101c0c41a72","signature":false},{"version":"d9d14150234c32bc0bf772d69182b166d8de600e0e5207924867da19351aca53","signature":false},{"version":"1a73eb921b7aa92d4c2d86ec95a39f5f73cf170b939314394d1b87bd06ae707b","signature":false},{"version":"5e5db3fb2f4f1a4d5276b9ba8f78df1f5f73754eeae5e2c23028f7830a2b66f9","signature":false},{"version":"3a36f6c843d1b4e91f80d6ff3ef8b5e25e1948fae24b8c62631c5df1faf82e41","signature":false},{"version":"dba94b73dbbe23c5066eeafc9f4f8dbf4430a4ab73d2d0d251fe4c1cd029d90b","signature":false},{"version":"564a52d0f974d976d982a2385ac5b353329f2dadab4f7616ee303678a7f64134","signature":false},{"version":"ff329383f830b2ba7578f67a374e2b8077f0b3d7036bf4d1a24edcc95de45c5d","signature":false},{"version":"ae03613211b26c4c1c0133ad47ec159705ee634de31020e04f2156354ceb93c6","signature":false},{"version":"6112f176d9ff3ca2bce62080ace03d5e33b2a251eed6397d2aca8adb51cb863b","signature":false},{"version":"97be7e3059f97c430d3375db2db3cd20530f33a2872045bc4ea72092deedb809","signature":false},{"version":"006a579b2cba5f46bed75e9eeee7bdb50455232fa1bb585e0420ad9ddef4a683","signature":false},{"version":"afa4bcb1c950e70212cc4ccf83a6096a25bc4280fb03bf94157f2eea853fad15","signature":false},{"version":"d836c32683f074ffd9a72ef601846fae421827220ccd6a4256bbe6f9f46f6b4e","signature":false},{"version":"6012a8d5986c48029756e1c9ad5153f50af540e8aaa76ddf26ca860835857ce9","signature":false},{"version":"499ab101952e35989d138b092f00c4af72eeecbfc8e8f5cf66bedce4b6ad8d95","signature":false},{"version":"901e5e72e5541e609f179f0ac44db1a057a04c13b535504eb3ea9d59b44d7d1b","signature":false},{"version":"81e5cefd5ad881498e2a6ae98eabd1eae22432f569cf96e7d82dab79fd8399f5","signature":false},{"version":"008dae8f3575ffbef098e31624a1da2b0d5defe667df587db66401c3f8f686dc","signature":false},{"version":"c46bd205c2482e6063d0e411e9425b2a27954a700af9e40fc9b60d121951ad21","signature":false},{"version":"00c835dad309d5d7471f0e55193c146cf5fa5f03107c012e63b4d8f122acba34","signature":false},{"version":"d79cde4c87a511f7219963cdbd32ec32bc3de93b2ca943d6046c1c31e2a3ee62","signature":false},{"version":"531c125862ac8e801bca17eaacc89b21e0d49ef80a76bf7dbd09b006f3e27a4a","signature":false},{"version":"6acaf4af108a108b505c278208684baba2846a7187a713ce312d68f547c103e3","signature":false},{"version":"be4e6ec9fe788d72a70afbdc4c297ea31d842a9ea301559f5ca42cdf13db1383","signature":false},{"version":"fb6f1b9cefef803d680a42968a3b57fefdb28e84f82450489278f78b74d74a81","signature":false},{"version":"8d1395d7fa6381cf71368706cf815130a32895fddd44acb047751072801f90bb","signature":false},{"version":"cdeedec78d8c66fc7522d13e9a2150edda98b18fd3bb95d0f556b6678d0c3739","signature":false},{"version":"7e8bf6cb0c7e13b34a8b40c4b36e633d639b8c4a3b5dec3a55a08bf26caf9a6b","signature":false},{"version":"27b0c41f2f485e59eaaab0d65c192ca022d7fcea87b2c24c9405a91e8b7a4a79","signature":false},{"version":"20d034b52037a7e5b0268fde45a111ffa9f0ae2e04819549d677262711d9dcf2","signature":false},{"version":"5f584ea703e64b108be0108238bb46f8c74756bb49cd630a2fc2ecbfbfde9ca6","signature":false},{"version":"a4d759fd1b0f8396f7767c618e282f4f9a1732b902b54908c5bb26964b1e4281","signature":false},{"version":"6eb7fae75c4a1a6bdee1d48700000f43f9d5cff7987f08bd49f21ed1ac0b7c4b","signature":false,"affectsGlobalScope":true},{"version":"3a5626be0c9a1aae6f75d0d38bcea4d070e5d1381a843a9b4eafd3eab6ed7ef7","signature":false,"affectsGlobalScope":true},{"version":"f6c97e5b3403d6f8683372fff53430b8d93728a60f04623bd3de9e470fe71259","signature":false,"affectsGlobalScope":true},{"version":"bfb3f3bd1d89a54d975a7554c8d12209188d7b849d00b9345fd0d41d79858e38","signature":false,"affectsGlobalScope":true},{"version":"22f424c221d557a69d83386550a272558bfef6f81b1dbacd3d35b4651b128d2b","signature":false,"affectsGlobalScope":true},{"version":"d1461f750f98ba938cf3b43f1095774f6007b92a4550bbfde87451dccc32b3bd","signature":false,"affectsGlobalScope":true},{"version":"c30a7a2198451431d80de5f9ba7197a0c8a56d52b29373e7270115776a28f3f3","signature":false,"affectsGlobalScope":true},{"version":"d4d6595aca02f63e2107a842fdd8f79e147fd802acd0e60900f16bee4f861173","signature":false,"affectsGlobalScope":true},{"version":"2070e277f4e874747a7706f000f19f2f512f9829f65f4caf634a908c07f45117","signature":false,"affectsGlobalScope":true},{"version":"7f53343307db666fa6a82bf5165f961d4b70e268ffb7e4e108f06d953c10c679","signature":false,"affectsGlobalScope":true},{"version":"8d10b5097dc2692979a984b4c56deaa0ad77c3a7b036a066ea0a72ec8c514830","signature":false,"affectsGlobalScope":true},{"version":"a252fd9c3a3e55eab45c1c78d376e7a8d82e736d55a5d95a1b285290881d5f88","signature":false,"affectsGlobalScope":true},{"version":"dde6ecc6409a17b372382192ca43c78c52015f34f49547ead38194c63127793a","signature":false,"affectsGlobalScope":true},{"version":"ed7b23f234388de62c9f86bcecd4608a854067fc20f2b4698b9f14ce0d92f4f2","signature":false,"affectsGlobalScope":true},{"version":"85ce7d3110c6652c276ea4d027bc1887176d97a5b7494f288cbbdfb2b48a11ee","signature":false,"affectsGlobalScope":true},{"version":"52535c5f6ea63e76c537e39df77b0720827e3f8d0fac9e2386352f0b6110a211","signature":false,"affectsGlobalScope":true},{"version":"abfe7c34c18ff9a242d5b7e4aba61dfb14b2db55ce5edce1798aaae365fa9cfe","signature":false},{"version":"7b9707d4934d0b63c71920058db2bd6f815b90c4ace1100ea24915c14c9af895","signature":false},{"version":"f73b1d7270a91ed30c71075ee5e0472465931a37ecdb5834c9d8ebe828847b45","signature":false}],"root":[[9,17],[25,30],[38,49]],"options":{"allowSyntheticDefaultImports":true,"declaration":true,"downlevelIteration":true,"experimentalDecorators":true,"jsx":2,"module":1,"outDir":"./","rootDir":"../src","strict":true,"target":99,"tsBuildInfoFile":"./tsconfig.tsbuildinfo"},"fileIdsList":[[1,2,3],[2,4,5],[1,3],[3],[2],[54],[54,55,56,57,58,59,60,61,62,63,64],[18,21,22,23],[19,20],[22],[36],[31],[32,33,34,35],[33],[31,32,33,34,36],[50,54],[51,65],[50,51,52,53,65],[3,6,7,9,10,13,14,15,17,23,24,25,26,38],[13],[28],[3,6,7,16,27],[1,6],[3,6,16,27],[3,7,13,16,30],[6],[3,6,15,16],[10,11,12],[7,10],[6,7,9],[7,27],[6,7,10,13,14,16],[6,13,25],[6,10,13,16],[6,13],[3,6,7,8,9,10,13,16,27,28,29,30,36,37],[7],[7,8,10,15,16,27,29,30,40,41],[3,6,7,8,10,13,27],[13,14,15,16,17,27,28,29,30,38,39,40,41,42,43,44,45,46,47,48]],"referencedMap":[[5,1],[6,2],[2,3],[4,4],[3,5],[55,6],[56,6],[65,7],[64,6],[57,6],[58,6],[59,6],[60,6],[61,6],[62,6],[63,6],[24,8],[21,9],[23,10],[37,11],[32,12],[36,13],[34,14],[35,15],[50,6],[51,16],[52,17],[54,18],[27,19],[14,20],[41,21],[28,22],[15,23],[29,24],[40,25],[39,26],[30,27],[13,28],[11,29],[10,30],[12,31],[17,32],[26,33],[43,34],[45,34],[46,35],[44,34],[47,35],[38,36],[48,37],[25,37],[42,38],[16,39],[49,40]],"semanticDiagnosticsPerFile":[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68]},"version":"5.5.3"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ecsframework/core",
3
- "version": "0.4.5",
3
+ "version": "0.4.6",
4
4
  "description": "",
5
5
  "main": "out/init.lua",
6
6
  "scripts": {