crab/src/crab.cr

21 lines
255 B
Crystal
Raw Normal View History

require "bitfield"
2020-10-02 23:30:14 -07:00
require "sdl"
require "./crab/gba"
module Crab
VERSION = "0.1.0"
extend self
def run
gba = GBA.new ARGV[0], ARGV[1]
gba.post_init
gba.run
end
end
unless PROGRAM_NAME.includes?("crystal-run-spec")
Crab.run
end