@@ -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) {