eraisedtoipi hace 10 años
padre
commit
2ed65f37b2
Se han modificado 1 ficheros con 11 adiciones y 0 borrados
  1. 11 0
      models/physicist.js

+ 11 - 0
models/physicist.js

@@ -0,0 +1,11 @@
+var Physicist = function(snake, position) {
+	this.direction = 0;
+	this.position = position;
+	this.name = 'Fermi';
+	this.bonus = '';
+	this.snake = snake;
+};
+
+Physicist.prototype.catch = function(collectible) {
+
+};