7 lines
110 B
Ruby
7 lines
110 B
Ruby
# Global constants
|
|
|
|
SCREEN_SIZE = [720, 480].freeze
|
|
N, S, W, E = 1, 2, 4, 8
|
|
|
|
DEBUG = ARGV.include?("--debug")
|