initial commit
This commit is contained in:
10
GameObject.js
Normal file
10
GameObject.js
Normal file
@@ -0,0 +1,10 @@
|
||||
class GameObject {
|
||||
constructor(game, x, y) {
|
||||
this.game = game;
|
||||
this.x = x;
|
||||
this.y = y;
|
||||
}
|
||||
|
||||
draw(ctx, conf) {}
|
||||
update() {}
|
||||
}
|
Reference in New Issue
Block a user