Class: Kawaii::Command

Inherits:
Object
  • Object
show all
Defined in:
lib/kawaii/command.rb

Class Method Summary collapse

Class Method Details

.run(command, args) ⇒ Object



23
24
25
26
27
28
29
30
31
32
33
# File 'lib/kawaii/command.rb', line 23

def self.run command, args
  puts ""
  case command
    when "new"
      new_game_template(args)
    when "help"
      print_help()
    else
  end
  puts ""
end