c-u-nitro-nil/Scripts/blank.2.rb
2024-02-07 10:17:27 -06:00

14 lines
No EOL
536 B
Ruby

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