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