simplay/bofrev

View on GitHub
src/constants/game_field_type_constants.rb

Summary

Maintainability
A
0 mins
Test Coverage
module GameFieldTypeConstants

  FREE = :free
  MOVING = :moving
  PLACED = :placed
  BORDER = :border
  GROUND_BORDER = :ground_border

  TYPES = [
    FREE,
    MOVING,
    PLACED,
    BORDER,
    GROUND_BORDER
  ]

end