diff options
Diffstat (limited to 'lib/serpentity/system.js')
| -rw-r--r-- | lib/serpentity/system.js | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/lib/serpentity/system.js b/lib/serpentity/system.js index 76bf306..91c019c 100644 --- a/lib/serpentity/system.js +++ b/lib/serpentity/system.js @@ -1,5 +1,3 @@ -'use strict'; - /* * Systems contain most of the logic, and work with nodes in order to * act and change their values. @@ -8,7 +6,7 @@ * three methods. They are shown here to document the interface. */ -const System = class System { +export class System { /* * This will be run when the system is added to the engine @@ -33,6 +31,4 @@ const System = class System { // Override with update(dt) // Receives a delta of the time } -}; - -module.exports = System; +} |