Skip to content

Instantly share code, notes, and snippets.

@iluxonchik
Created October 1, 2014 15:31
Show Gist options
  • Save iluxonchik/6886ae2b121da3988620 to your computer and use it in GitHub Desktop.
Save iluxonchik/6886ae2b121da3988620 to your computer and use it in GitHub Desktop.
public AndGateTwo() { gateOne = gateTwo = false; }
public AndGateTwo(boolean bool) { gateOne = gateTwo = bool; }
public AndGateTwo(boolean gOneBool, boolean gTwoBool) { gateOne = gOneBool; gateTwo = gTwoBool; }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment