mirror of
https://github.com/infinitefusion/infinitefusion-e18.git
synced 2025-12-06 06:01:46 +00:00
13 lines
232 B
Ruby
13 lines
232 B
Ruby
class PokemonBoxIcon < IconSprite
|
|
attr_accessor :heldox
|
|
attr_accessor :heldoy
|
|
|
|
alias _pokemonBoxIconInitialize initialize
|
|
|
|
def initialize(*args)
|
|
@heldox = 0
|
|
@heldoy = 0
|
|
_pokemonBoxIconInitialize(*args)
|
|
end
|
|
end
|