Sha256: d857285e355a30918ab73dca7ec97b5e74db514b332a7e56037774438fbe490f

Contents?: true

Size: 234 Bytes

Versions: 6

Compression:

Stored size: 234 Bytes

Contents

module GameMachine
  module GameSystems
    class Devnull < Actor::Base
      
      def post_init(*args)
      end

      def on_receive(message)
        GameMachine.logger.debug("Devnull got #{message}")
      end
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
game_machine-1.0.4 lib/game_machine/game_systems/devnull.rb
game_machine-1.0.2 lib/game_machine/game_systems/devnull.rb
game_machine-0.0.11 lib/game_machine/game_systems/devnull.rb
game_machine-0.0.10 lib/game_machine/game_systems/devnull.rb
game_machine-0.0.9 lib/game_machine/game_systems/devnull.rb
game_machine-0.0.8 lib/game_machine/game_systems/devnull.rb