Browse Source

ph models

eraisedtoipi 10 years ago
parent
commit
2ed65f37b2
1 changed files with 11 additions and 0 deletions
  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) {
+
+};