summaryrefslogtreecommitdiff
path: root/resources/js/gameArea.js
diff options
context:
space:
mode:
authorFbenas <philbeansburton@gmail.com>2020-09-20 22:08:03 +0100
committerFbenas <philbeansburton@gmail.com>2020-09-20 22:08:03 +0100
commit9be73c2d0f21a539bc46974139e8c36c12845ca0 (patch)
tree3442d2254797983e7e0294c9aee00e90aa643109 /resources/js/gameArea.js
Initial commit
Diffstat (limited to 'resources/js/gameArea.js')
-rw-r--r--resources/js/gameArea.js20
1 files changed, 20 insertions, 0 deletions
diff --git a/resources/js/gameArea.js b/resources/js/gameArea.js
new file mode 100644
index 0000000..a39b0e8
--- /dev/null
+++ b/resources/js/gameArea.js
@@ -0,0 +1,20 @@
+class GameArea {
+
+ constructor(canvas_width, canvas_height) {
+ this.canvas = document.createElement("canvas");
+ this.canvas_width = canvas_width;
+ this.canvas_height = canvas_height;
+ }
+
+ init() {
+ this.canvas.width = this.canvas_width;
+ this.canvas.height = this.canvas_height;
+ this.context = this.canvas.getContext("2d");
+ document.getElementById('container').appendChild(this.canvas);
+ }
+
+ clear() {
+ this.context.clearRect(0, 0, this.canvas.width, this.canvas.height);
+ }
+
+}