blob: 67e28a93b3e62e35629191648bbf348ccad42fe0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/usr/bin/env ruby -w
require 'Qt'
require '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()
|