Method: Core::GUI::CharSelector#left
- Defined in:
- lib/gui/char_selector.rb
#left ⇒ Object
24 25 26 27 28 29 30 |
# File 'lib/gui/char_selector.rb', line 24 def left @index -= 1 if @index < 0 @index = @party.members.size-1 end @changed = true end |