Skip to content

Commit

Permalink
changing readme
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew Tribone committed Nov 9, 2011
1 parent 2ba7230 commit 2bc1379
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
7 changes: 7 additions & 0 deletions README
Original file line number Diff line number Diff line change
@@ -1 +1,8 @@
LOLOL

Andrew Tribone
Sean Myers
Kristy Caster

To play: http://koios.co/dmfd/

2 changes: 1 addition & 1 deletion player.dart
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class Player {
}
int get money()=> _money;

bool gameOver() => life < 0;
bool gameOver() => life <= 0;
String displayMoney() => "Money: $_money";
String displayLife()=> "Life: $_life/$totalLife";
//Returns false if you do not have enough money
Expand Down
2 changes: 1 addition & 1 deletion tfd.dart.app.js
Original file line number Diff line number Diff line change
Expand Up @@ -169018,7 +169018,7 @@ unnamedf00e98$Player$Dart.prototype.money$setter = function(newMoney){
}
;
unnamedf00e98$Player$Dart.prototype.gameOver$member = function(){
return LT$operator(this.life$getter(), 0);
return LTE$operator(this.life$getter(), 0);
}
;
unnamedf00e98$Player$Dart.prototype.gameOver$named = function($n, $o){
Expand Down

0 comments on commit 2bc1379

Please sign in to comment.