class PUBG::Telemetry::Vehicle

Attributes

data[R]
fuelpercent[R]
healthpercent[R]
vehicleid[R]
vehicletype[R]

Public Class Methods

new(args) click to toggle source
# File lib/pubg/telemetry/shared/vehicle.rb, line 6
def initialize(args)
  @data = args
  @vehicletype = args["VehicleType"]
  @vehicleid = args["VehicleId"]
  @healthpercent = args["HealthPercent"]
  @fuelpercent = args["FeulPercent"]
end