Files
pacman.js/GameObject.js
2019-06-11 18:46:14 +02:00

10 lines
162 B
JavaScript

class GameObject {
constructor(game, x, y) {
this.game = game;
this.x = x;
this.y = y;
}
draw(ctx, conf) {}
update() {}
}