class MsgClientJoinChat

Class for the MsgClientJoinChat in the Steam Language.

Public Class Methods

new() click to toggle source

Instantiate a MsgClientJoinChat object

Calls superclass method SteamSerializable::new
# File lib/steamd/generated/steammsg.rb, line 1413
def initialize
  super([{:name=>"steam_id_chat", :type=>"ulong", :modifier=>"steamidmarshal", :value=>nil, :size=>nil, :modifier_size=>nil}, {:name=>"is_voice_speaker", :type=>"byte", :modifier=>"boolmarshal", :value=>nil, :size=>nil, :modifier_size=>nil}], [])
end

Public Instance Methods

is_voice_speaker() click to toggle source

Gets the is_voice_speaker variable.

@note defaults to @return [byte] the value of is_voice_speaker

# File lib/steamd/generated/steammsg.rb, line 1436
def is_voice_speaker
  @variables['is_voice_speaker'][:value]
end
is_voice_speaker=(value) click to toggle source

Sets the is_voice_speaker variable.

@param value [byte] the new value

# File lib/steamd/generated/steammsg.rb, line 1443
def is_voice_speaker=(value)
  @variables['is_voice_speaker'][:value] = value
end
steam_id_chat() click to toggle source

Gets the steam_id_chat variable.

@note defaults to @return [ulong] the value of steam_id_chat

# File lib/steamd/generated/steammsg.rb, line 1421
def steam_id_chat
  @variables['steam_id_chat'][:value]
end
steam_id_chat=(value) click to toggle source

Sets the steam_id_chat variable.

@param value [ulong] the new value

# File lib/steamd/generated/steammsg.rb, line 1428
def steam_id_chat=(value)
  @variables['steam_id_chat'][:value] = value
end