diff --git a/AK/IterationDecision.h b/AK/IterationDecision.h new file mode 100644 index 0000000000..26620ee438 --- /dev/null +++ b/AK/IterationDecision.h @@ -0,0 +1,12 @@ +#pragma once + +namespace AK { + +enum class IterationDecision { + Continue, + Break, +}; + +} + +using AK::IterationDecision;