14 lines
No EOL
536 B
Ruby
14 lines
No EOL
536 B
Ruby
#===============================================================================
|
|
# ■ Game_Variables クラス
|
|
#===============================================================================
|
|
class Game_Variables
|
|
#-----------------------------------------------------------------------------
|
|
# ● リセット
|
|
#-----------------------------------------------------------------------------
|
|
def reset!
|
|
# データクリア
|
|
@data = []
|
|
# リフレッシュフラグを設定
|
|
$game_map.need_refresh = true
|
|
end
|
|
end |