mirror of
https://github.com/Ukendio/jecs.git
synced 2025-07-03 13:39:17 +00:00
Remove sparse_count
This commit is contained in:
parent
c02a5d60ba
commit
00d6269a25
1 changed files with 0 additions and 2 deletions
|
@ -72,7 +72,6 @@ type ArchetypeDiff = {
|
||||||
type EntityIndex = {
|
type EntityIndex = {
|
||||||
dense_array: Map<i24, i53>,
|
dense_array: Map<i24, i53>,
|
||||||
sparse_array: Map<i53, Record>,
|
sparse_array: Map<i53, Record>,
|
||||||
sparse_count: number,
|
|
||||||
alive_count: number,
|
alive_count: number,
|
||||||
max_id: number,
|
max_id: number,
|
||||||
}
|
}
|
||||||
|
@ -1674,7 +1673,6 @@ function World.new()
|
||||||
local entity_index: EntityIndex = {
|
local entity_index: EntityIndex = {
|
||||||
dense_array = {} :: { [i24]: i53 },
|
dense_array = {} :: { [i24]: i53 },
|
||||||
sparse_array = {} :: { [i53]: Record },
|
sparse_array = {} :: { [i53]: Record },
|
||||||
sparse_count = 0,
|
|
||||||
alive_count = 0,
|
alive_count = 0,
|
||||||
max_id = 0,
|
max_id = 0,
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue