archetype-ecs 1.3.2 → 1.3.3
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.
- package/dist/EntityManager.d.ts +2 -2
- package/package.json +1 -1
- package/src/EntityManager.ts +2 -2
package/dist/EntityManager.d.ts
CHANGED
|
@@ -8,9 +8,9 @@ export interface ArchetypeView {
|
|
|
8
8
|
readonly count: number;
|
|
9
9
|
readonly snapshotEntityIds: EntityId[] | null;
|
|
10
10
|
readonly snapshotCount: number;
|
|
11
|
-
field(ref: FieldRef):
|
|
11
|
+
field(ref: FieldRef): any;
|
|
12
12
|
fieldStride(ref: FieldRef): number;
|
|
13
|
-
snapshot(ref: FieldRef):
|
|
13
|
+
snapshot(ref: FieldRef): any;
|
|
14
14
|
}
|
|
15
15
|
export interface SerializedData {
|
|
16
16
|
nextId: number;
|
package/package.json
CHANGED
package/src/EntityManager.ts
CHANGED
|
@@ -13,9 +13,9 @@ export interface ArchetypeView {
|
|
|
13
13
|
readonly count: number;
|
|
14
14
|
readonly snapshotEntityIds: EntityId[] | null;
|
|
15
15
|
readonly snapshotCount: number;
|
|
16
|
-
field(ref: FieldRef):
|
|
16
|
+
field(ref: FieldRef): any;
|
|
17
17
|
fieldStride(ref: FieldRef): number;
|
|
18
|
-
snapshot(ref: FieldRef):
|
|
18
|
+
snapshot(ref: FieldRef): any;
|
|
19
19
|
}
|
|
20
20
|
|
|
21
21
|
export interface SerializedData {
|