class PUBG::Telemetry::Attacker
Attributes
accountid[R]
data[R]
health[R]
location[R]
name[R]
ranking[R]
teamid[R]
Public Class Methods
new(args)
click to toggle source
# File lib/pubg/telemetry/shared/attacker.rb, line 8 def initialize(args) @data = args @name = args["Name"] @teamid = args["TeamId"] @health = args["Health"] @location = Location.new(args["Location"]) @ranking = args["Ranking"] @accountid = args["AccountId"] end