Sha256: b87f74293f86a652b0bc4cc2644df53828d5753137939102a704a7dd074f1d25
Contents?: true
Size: 292 Bytes
Versions: 19
Compression:
Stored size: 292 Bytes
Contents
# frozen_string_literal: true module GenshinObject # Class to represent world bosses class WorldBoss < Boss attr_accessor :boss_material def initialize(name:, nation_name:, boss_material:) @boss_material = boss_material super(name:, nation_name:) end end end
Version data entries
19 entries across 19 versions & 1 rubygems