mirror of
https://github.com/RGBCube/serenity
synced 2025-05-20 16:55:08 +00:00
12 lines
122 B
C++
12 lines
122 B
C++
#pragma once
|
|
|
|
namespace AK {
|
|
|
|
enum class IterationDecision {
|
|
Continue,
|
|
Break,
|
|
};
|
|
|
|
}
|
|
|
|
using AK::IterationDecision;
|