Add TODO to remember replacing steps with an enum

This commit is contained in:
Louis Dureuil 2024-11-18 17:40:51 +01:00
parent 04c38220ca
commit 75943a5a9b
No known key found for this signature in database

View File

@ -68,6 +68,7 @@ mod steps {
];
const fn step(step: u16) -> (u16, &'static str) {
/// TODO: convert to an enum_iterator enum of steps
(step, STEPS[step as usize])
}