Sha256: ef41c979036c6f8d090388bdff7aafff96e7d46f8c321af6b011a62b76d131b0

Contents?: true

Size: 534 Bytes

Versions: 2

Compression:

Stored size: 534 Bytes

Contents

require_relative 'commands/message_helper'
require_relative 'commands/datastore_commands'
require_relative 'commands/chat_commands'
require_relative 'commands/player_commands'
require_relative 'commands/grid_commands'
require_relative 'commands/misc_commands'
require_relative 'commands/proxy'
require_relative 'commands/base'

if RbConfig::CONFIG['host_os'].match(/linux/i)
  require_relative 'commands/navigation_commands'
end

module GameMachine
  module Commands

    def commands
      @commands ||= Base.new
    end

  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
game_machine-1.0.4 lib/game_machine/commands.rb
game_machine-1.0.2 lib/game_machine/commands.rb