Skip to content

Instantly share code, notes, and snippets.

@CarlLee
Last active August 29, 2015 14:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save CarlLee/5035e63296fe86a7c364 to your computer and use it in GitHub Desktop.
Save CarlLee/5035e63296fe86a7c364 to your computer and use it in GitHub Desktop.
if(she.getFaceValue() >= 90 &&
she.getBreastSize().compare(new BreastSize("36D")) >= 0){
this.sleepWith(she);
if(this.getHappiness() >= 60){
this.setGirlFriend(she);
int prevHappiness = this.getHappiness();
// Wait for 2 months
Thread.sleep(1000 * 3600 * 24 * 30 * 2);
if(this.getHappiness() - prevHappiness >= 15){
this.marry(she);
return;
}
}
}
// otherwise, release the reference and let GC work
she = null;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment