Created
July 11, 2016 14:18
-
-
Save simpleprogrammer-shared/695bbd41244a3107c47fb1bf198e7538 to your computer and use it in GitHub Desktop.
Back to Basics: Mock Eliminating Patterns 1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
isSpecial = false; | |
timeToLive = 50; | |
timeToLove = 1 | |
penguinsHaveAttacked = true; | |
public ApocalypseScenario CreateNew() | |
{ | |
if(isSpecial && timeToLive < timeToLove || penguinsHaveAttacked) | |
return new ApocalypseScenario("Penguin Apocalypse, Code Blue"); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment