#==============================================================================
# ■ Centered Title Command RGSS3 v1.1 MIT License; see git.io/tic
#------------------------------------------------------------------------------
# Centers title command texts and 5 characters wider.
#==============================================================================
class Window_TitleCommand
#--------------------------------------------------------------------------
# ● Alignment [* redefinition *]
#--------------------------------------------------------------------------
def alignment
return 1
end
#--------------------------------------------------------------------------
# ● Window width [* redefined *]
#--------------------------------------------------------------------------
def window_width
return 128
end
end
#------------------------------------------------------------------------------
class Window_GameEnd
#--------------------------------------------------------------------------
# ● Alignment [* redefinition *]
#--------------------------------------------------------------------------
def alignment
return 1
end
#--------------------------------------------------------------------------
# ● Window width [* redefined *]
#--------------------------------------------------------------------------
def window_width
return 128
end
end