Class: MsgClientChatMsg
- Inherits:
-
Object
- Object
- MsgClientChatMsg
- Includes:
- SteamSerializable
- Defined in:
- lib/steamd/generated/steammsg.rb
Overview
Class for the MsgClientChatMsg in the Steam Language.
Instance Attribute Summary
Attributes included from SteamSerializable
Instance Method Summary collapse
-
#chat_msg_type ⇒ EChatEntryType
Gets the chat_msg_type variable.
-
#chat_msg_type=(value) ⇒ Object
Sets the chat_msg_type variable.
-
#initialize ⇒ MsgClientChatMsg
constructor
Instantiate a MsgClientChatMsg object.
-
#steam_id_chat_room ⇒ ulong
Gets the steam_id_chat_room variable.
-
#steam_id_chat_room=(value) ⇒ Object
Sets the steam_id_chat_room variable.
-
#steam_id_chatter ⇒ ulong
Gets the steam_id_chatter variable.
-
#steam_id_chatter=(value) ⇒ Object
Sets the steam_id_chatter variable.
Methods included from SteamSerializable
#consts, #deserialize, #encode_to, #flag, #serialize, #vars
Constructor Details
#initialize ⇒ MsgClientChatMsg
Instantiate a MsgClientChatMsg object
1587 1588 1589 |
# File 'lib/steamd/generated/steammsg.rb', line 1587 def initialize super([{:name=>"steam_id_chatter", :type=>"ulong", :modifier=>"steamidmarshal", :value=>nil, :size=>nil, :modifier_size=>nil}, {:name=>"steam_id_chat_room", :type=>"ulong", :modifier=>"steamidmarshal", :value=>nil, :size=>nil, :modifier_size=>nil}, {:name=>"chat_msg_type", :type=>"EChatEntryType", :modifier=>nil, :value=>nil, :size=>nil, :modifier_size=>nil}], []) end |
Instance Method Details
#chat_msg_type ⇒ EChatEntryType
Note:
defaults to
Gets the chat_msg_type variable.
1625 1626 1627 |
# File 'lib/steamd/generated/steammsg.rb', line 1625 def chat_msg_type @variables['chat_msg_type'][:value] end |
#chat_msg_type=(value) ⇒ Object
Sets the chat_msg_type variable.
1632 1633 1634 |
# File 'lib/steamd/generated/steammsg.rb', line 1632 def chat_msg_type=(value) @variables['chat_msg_type'][:value] = value end |
#steam_id_chat_room ⇒ ulong
Note:
defaults to
Gets the steam_id_chat_room variable.
1610 1611 1612 |
# File 'lib/steamd/generated/steammsg.rb', line 1610 def steam_id_chat_room @variables['steam_id_chat_room'][:value] end |
#steam_id_chat_room=(value) ⇒ Object
Sets the steam_id_chat_room variable.
1617 1618 1619 |
# File 'lib/steamd/generated/steammsg.rb', line 1617 def steam_id_chat_room=(value) @variables['steam_id_chat_room'][:value] = value end |
#steam_id_chatter ⇒ ulong
Note:
defaults to
Gets the steam_id_chatter variable.
1595 1596 1597 |
# File 'lib/steamd/generated/steammsg.rb', line 1595 def steam_id_chatter @variables['steam_id_chatter'][:value] end |
#steam_id_chatter=(value) ⇒ Object
Sets the steam_id_chatter variable.
1602 1603 1604 |
# File 'lib/steamd/generated/steammsg.rb', line 1602 def steam_id_chatter=(value) @variables['steam_id_chatter'][:value] = value end |