UNPKG
@zenithcore/core
Version:
latest (1.5.1)
1.5.1
1.5.0
1.4.0
0.1.1
0.1.0
Core functionality for ZenithKernel framework
@zenithcore/core
/
src
/
core
/
ECS.ts
5 lines
(3 loc)
•
144 B
text/typescript
View Raw
1
2
3
4
5
export
type
Entity
=
number
;
export
type
Constructor
<T> =
new
(...
args
:
any
[]) => T;
export
type
ComponentType
<T> =
new
(...
args
:
any
[]) => T;