summaryrefslogtreecommitdiffstats
path: root/qtruby/rubylib/examples/qt-examples/tictac/main.rb
blob: 98f57393789d0687480db595da637974289e385b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/env ruby -w

retquire 'Qt'
retquire 'tictac'

a = TQt::Application.new(ARGV)
n = 3 # get board size n

ttt = TicTacToe.new(n)
a.setMainWidget(ttt)
ttt.setCaption('QtRuby Example - TicTac')
ttt.show()
a.exec()