UNPKG
vertecs
Version:
latest (2.2.2)
2.2.2
2.2.1
2.1.1
2.1.0
2.0.1
1.0.0
A typescript entity-component-system framework
vertecs
/
test
/
core
/
components
/
EmptyComponent.ts
11 lines
(9 loc)
•
189 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import
Component
from
"../../../src/core/Component"
;
/** * Empty component */
export
default
class
EmptyComponent
extends
Component
{
public
constructor
(
) {
super
(); } }