Sha256: c0bae0245aae0394d7a8113d6349ebcd56f6d1f08f08dc6b72bfdddbcf6905b8

Contents?: true

Size: 461 Bytes

Versions: 6

Compression:

Stored size: 461 Bytes

Contents

module GameMachine
  module Commands
    class Base

      attr_reader :player, :grid, :chat, :datastore, :navigation, :misc

      def self.commands
        @commands ||= new
      end

      def initialize
        @player = PlayerCommands.new
        @grid = GridCommands.new
        @chat = ChatCommands.new
        @datastore = DatastoreCommands.new
        @misc = MiscCommands.new
        #@navigation = NavigationCommands.new
      end
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
game_machine-1.0.4 lib/game_machine/commands/base.rb
game_machine-1.0.2 lib/game_machine/commands/base.rb
game_machine-0.0.11 lib/game_machine/commands/base.rb
game_machine-0.0.10 lib/game_machine/commands/base.rb
game_machine-0.0.9 lib/game_machine/commands/base.rb
game_machine-0.0.8 lib/game_machine/commands/base.rb