#encoding:utf-8 #============================================================================== # ■ Window_ChoiceList #------------------------------------------------------------------------------ # 此窗口使用于事件指令中的“顯示選項”的功能。 #============================================================================== class Window_ChoiceList < Window_Command #-------------------------------------------------------------------------- # ● 更新 #-------------------------------------------------------------------------- def close super dispose_bgs end end
#encoding:utf-8
#==============================================================================
# ■ Window_ChoiceList
#------------------------------------------------------------------------------
# 此窗口使用于事件指令中的“顯示選項”的功能。
#==============================================================================
class Window_ChoiceList < Window_Command
#--------------------------------------------------------------------------
# ● 更新
#--------------------------------------------------------------------------
def close
super
dispose_bgs
end
end
|