Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/SuperOrxoBros_HS18/SuperOrxoBros_HS18/data/tcl/irk/irk.tcl @ 12175

Last change on this file since 12175 was 12175, checked in by siramesh, 5 years ago

Super Orxo Bros (Sidharth Ramesh, Nisa Balta, Jeff Ren)

File size: 728 bytes
Line 
1# IRK: A client library for IRC programming written in Tcl.
2
3# We need the socks package to get through firewalls:
4
5package require socks
6
7# We provide the IRK package:
8
9package provide irk 0.1
10
11set thisdir [file dir [info script]]
12
13# Source the rest of the package:
14
15source [file join $thisdir lib irkstate.tcl]
16source [file join $thisdir lib irkconnect.tcl]
17source [file join $thisdir lib irkdispatch.tcl]
18source [file join $thisdir lib irkreceive.tcl]
19source [file join $thisdir lib irkcommand.tcl]
20source [file join $thisdir lib irkflow.tcl]
21source [file join $thisdir lib irkutil.tcl]
22source [file join $thisdir lib irkctcptcl.tcl]
23source [file join $thisdir lib irkauth.tcl]
24source [file join $thisdir lib irkservers.tcl]
Note: See TracBrowser for help on using the repository browser.