Sha256: bd10ea5427154efd9da8c6e60eb943ea9fe28905ccf916e225fa525fb40ed178
Contents?: true
Size: 394 Bytes
Versions: 16
Compression:
Stored size: 394 Bytes
Contents
# frozen_string_literal: true module EveOnline module ESI module Models class Position < Base def as_json { x: x, y: y, z: z } end def x options["x"] end def y options["y"] end def z options["z"] end end end end end
Version data entries
16 entries across 16 versions & 1 rubygems