Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
themeEclipse
languagejavascript
linenumberstrue
functionvar iHave = (function(structure) {
  var listbuildingIsBuilt = enumStructfunction(me,structure)building) {
    return building.status == BUILT;
  }
  return (list.some(function (buildingstructure) {
    returnvar building.statuslist == BUILT enumStruct(me,structure);
  }   return list.some(buildingIsBuilt);
  }
})();

Example

Code Block
themeEclipse
languagejavascript
linenumberstrue
// You need a HQ before you can design units or build defence towers
if (iHave(HQ)) {
  // build defence towers
} else {
  // instruct a truck to build a HQ!
}

...