Sha256: 735581aae48897e2a0b77b18949132b63ebd1f3a7d4fe8c7b41ad5d2196d03b0
Contents?: true
Size: 307 Bytes
Versions: 11
Compression:
Stored size: 307 Bytes
Contents
# encoding: utf-8 require 'typesafe_enum' # Ausrichtung einer Linie auf dem Spielbrett. Mögliche Werte sind: # - HORIZONTAL # - VERTICAL # - RISING_DIAGONAL # - FALLING_DIAGONAL class LineDirection < TypesafeEnum::Base new :HORIZONTAL new :VERTICAL new :RISING_DIAGONAL new :FALLING_DIAGONAL end
Version data entries
11 entries across 11 versions & 1 rubygems