class Rsrb::Model::Equipment::AppearanceContainerListener

Attributes

player[R]

Public Class Methods

new(player) click to toggle source
# File lib/rsrb/model/equipment.rb, line 83
def initialize(player)
  @player = player
end

Public Instance Methods

items_changed(container) click to toggle source
# File lib/rsrb/model/equipment.rb, line 95
def items_changed(container)
  @player.flags.flag :appearance
end
slot_changed(container, slot) click to toggle source
# File lib/rsrb/model/equipment.rb, line 87
def slot_changed(container, slot)
  @player.flags.flag :appearance
end
slots_changed(container, slots) click to toggle source
# File lib/rsrb/model/equipment.rb, line 91
def slots_changed(container, slots)
  @player.flags.flag :appearance
end