class PUBG::Telemetry::Location

Attributes

x[R]
y[R]
z[R]

Public Class Methods

new(args) click to toggle source
# File lib/pubg/telemetry/shared/location.rb, line 6
def initialize(args)
  @x = args["X"]
  @y = args["Y"]
  @z = args["Z"]
end