Skip to content

Commit

Permalink
Added Energy Enum
Browse files Browse the repository at this point in the history
  • Loading branch information
OlaPapiGrr committed Sep 19, 2024
1 parent bd82359 commit 8c37cfe
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions models/EnergyComponentEnum.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
from enum import Enum


class EnergyComponentEnum(Enum):
THRUSTER_BACK = "thruster_back"
THRUSTER_FRONT = "thruster_front"
THRUSTER_FRONT_LEFT = "thruster_front_left"
THRUSTER_FRONT_RIGHT = "thruster_front_right"
THRUSTER_BOTTOM_LEFT = "thruster_bottom_left"
THRUSTER_BOTTOM_RIGHT = "thruster_bottom_right"
LASER = "laser"
CARGO_BOT = "cargo_bot"
SCANNER = "scanner"

0 comments on commit 8c37cfe

Please sign in to comment.