📦 Moves templates

This commit is contained in:
Rune Harlyk
2024-11-14 15:56:23 +01:00
parent b6fe8844f4
commit 24d39e540e
18 changed files with 29 additions and 29 deletions
@@ -0,0 +1,7 @@
#pragma once
enum class StateUpdateResult {
CHANGED = 0, // The update changed the state and propagation should take place if required
UNCHANGED, // The state was unchanged, propagation should not take place
ERROR // There was a problem updating the state, propagation should not take place
};