UNPKG
miaam-ecs
Version:
latest (2.1.0)
2.1.0
2.0.2
2.0.1
ECS by and for Miaam
miaam-ecs
/
src
/
core
/
System.js
22 lines
(14 loc)
•
256 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/* eslint-disable no-empty-function */
/* eslint-disable class-methods-use-this */
class
System
{ queries;
constructor
(
) {
this
.
queries
= {}; }
init
(
) {}
beforeUpdate
(
) {}
update
(
) {}
afterUpdate
(
) {}
destroy
(
) {} }
export
default
System
;