diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/menu.rb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/menu.rb b/lib/menu.rb index 4ed44e9..801b5a7 100644 --- a/lib/menu.rb +++ b/lib/menu.rb @@ -30,6 +30,9 @@ module CandyGear def draw() = @stack.each {_1.draw();} def size() = @stack.size; + + def pred_opt() = self.current_menu.pred_opt(); + def next_opt() = self.current_menu.next_opt(); end class BorderlessView |