Class: PUBG::Telemetry::LogItemEquip
- Inherits:
-
Object
- Object
- PUBG::Telemetry::LogItemEquip
- Defined in:
- lib/pubg/telemetry/log_item_equip.rb
Instance Attribute Summary collapse
-
#_D ⇒ Object
readonly
Returns the value of attribute _D.
-
#_T ⇒ Object
readonly
Returns the value of attribute _T.
-
#_V ⇒ Object
readonly
Returns the value of attribute _V.
-
#character ⇒ Object
readonly
Returns the value of attribute character.
-
#data ⇒ Object
readonly
Returns the value of attribute data.
-
#item ⇒ Object
readonly
Returns the value of attribute item.
Instance Method Summary collapse
-
#initialize(args) ⇒ LogItemEquip
constructor
A new instance of LogItemEquip.
Constructor Details
#initialize(args) ⇒ LogItemEquip
Returns a new instance of LogItemEquip.
9 10 11 12 13 14 15 16 |
# File 'lib/pubg/telemetry/log_item_equip.rb', line 9 def initialize(args) @data = args @character = Character.new(args["Character"]) @item = Item.new(args["Item"]) @_V = args["_V"] @_D = args["_D"] @_T = args["_T"] end |
Instance Attribute Details
#_D ⇒ Object (readonly)
Returns the value of attribute _D.
7 8 9 |
# File 'lib/pubg/telemetry/log_item_equip.rb', line 7 def _D @_D end |
#_T ⇒ Object (readonly)
Returns the value of attribute _T.
7 8 9 |
# File 'lib/pubg/telemetry/log_item_equip.rb', line 7 def _T @_T end |
#_V ⇒ Object (readonly)
Returns the value of attribute _V.
7 8 9 |
# File 'lib/pubg/telemetry/log_item_equip.rb', line 7 def _V @_V end |
#character ⇒ Object (readonly)
Returns the value of attribute character.
7 8 9 |
# File 'lib/pubg/telemetry/log_item_equip.rb', line 7 def character @character end |
#data ⇒ Object (readonly)
Returns the value of attribute data.
7 8 9 |
# File 'lib/pubg/telemetry/log_item_equip.rb', line 7 def data @data end |
#item ⇒ Object (readonly)
Returns the value of attribute item.
7 8 9 |
# File 'lib/pubg/telemetry/log_item_equip.rb', line 7 def item @item end |