More documentation for the MatchHandler class.
[kaya.git] / lib / view.rb
blobdbf05e5f8e21eada3847a5cd0956342fb2f2ca66
1 # Copyright (c) 2009 Paolo Capriotti <p.capriotti@gmail.com>
2
3 # This program is free software; you can redistribute it and/or modify
4 # it under the terms of the GNU General Public License as published by
5 # the Free Software Foundation; either version 2 of the License, or
6 # (at your option) any later version.
8 class View
9   attr_reader :controller, :movelist, :table
10   
11   def initialize(table, controller, movelist)
12     @table = table
13     @controller = controller
14     @movelist = movelist
15   end
16   
17   def main_widget
18     @table
19   end
20 end