Browse Source

Remove unused UnitMode enum

The enum was defined but never used in the implementation.
Using int constants k_mode_type_hold and k_mode_type_guard instead
for consistency with the draw command structure.

Co-authored-by: djeada <[email protected]>
copilot-swe-agent[bot] 6 days ago
parent
commit
fac3428ef6
1 changed files with 0 additions and 2 deletions
  1. 0 2
      render/geom/mode_indicator.h

+ 0 - 2
render/geom/mode_indicator.h

@@ -5,8 +5,6 @@
 
 
 namespace Render::Geom {
 namespace Render::Geom {
 
 
-enum class UnitMode { Hold, Guard };
-
 // Mode type constants for rendering
 // Mode type constants for rendering
 constexpr int k_mode_type_hold = 0;
 constexpr int k_mode_type_hold = 0;
 constexpr int k_mode_type_guard = 1;
 constexpr int k_mode_type_guard = 1;