UNPKG
super-ecs
Version:
latest (3.0.1)
3.0.1
3.0.0
2.3.0
2.2.0
2.1.0
2.0.0
1.4.2
1.4.1
1.4.0
1.3.0
1.2.0
1.1.0
1.0.0
Entity Component System library
github.com/goldenratio/super-ecs
goldenratio/super-ecs
super-ecs
/
dist
/
types
/
world
/
entity-node.d.ts
8 lines
(7 loc)
•
200 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
import
type
{
Entity
}
from
'../entity.js'
;
export
declare
class
EntityNode
{
readonly
entity
:
Entity
;
prev
:
EntityNode
|
null
;
next
:
EntityNode
|
null
;
constructor
(
entity
:
Entity
); }