Rooms, items and some player stuff
This commit is contained in:
8
src/framework/world/system.js
Normal file
8
src/framework/world/system.js
Normal file
@@ -0,0 +1,8 @@
|
||||
export class System {
|
||||
constructor(executor) { }
|
||||
execute(world) {
|
||||
if (this.executor) {
|
||||
this.executor(world);
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user