class Window_ItemCategory < Window_HorzCommand
#--------------------------------------------------------------------------
# ● 列数取得
#--------------------------------------------------------------------------
def col_max
6 #
end
#--------------------------------------------------------------------------
# ● 指令取得
#--------------------------------------------------------------------------
def make_command_list
add_command(Vocab::item, :item)
add_command(Vocab::weapon, :weapon)
add_command(Vocab::armor, :armor)
add_command("配方", :gem)
add_command("材料", :material)
add_command(Vocab::key_item, :key_item)
end
end
class Window_ItemCategory < Window_HorzCommand
#--------------------------------------------------------------------------
# ● 列数取得
#--------------------------------------------------------------------------
def col_max
6 #
end
#--------------------------------------------------------------------------
# ● 指令取得
#--------------------------------------------------------------------------
def make_command_list
add_command(Vocab::item, :item)
add_command(Vocab::weapon, :weapon)
add_command(Vocab::armor, :armor)
add_command("配方", :gem)
add_command("材料", :material)
add_command(Vocab::key_item, :key_item)
end
end