teeworlds_network/lib/snapshot/items/pickup.rb

24 lines
377 B
Ruby
Raw Normal View History

2022-11-19 10:24:13 +00:00
# frozen_string_literal: true
require_relative '../snap_item_base'
class NetObj
class Pickup < SnapItemBase
attr_accessor :x, :y, :type
def initialize(hash_or_raw)
2024-02-21 06:44:49 +00:00
@type = NETOBJTYPE_PICKUP
2022-11-19 10:24:13 +00:00
@field_names = %i[
x
y
type
]
super
end
def self.match_type?(type)
type == NETOBJTYPE_PICKUP
end
end
end