#!/usr/local/bin/wish -f

#//-------------------------------------------------------------------------//
#//                                                                         //
#//  This section of code contains the directory information corresponding  //
#//  to the files needed/used by the Video Poker application.  Please       //
#//  customize this section of code as follows:                             //
#//                                                                         //
#//  		sourcedir	The directory containing the source        //
#//				files of the Video Poker application:      //
#//				support.tcl, screen.tcl, and manager.tcl.  //  
#//                                                                         //
#//-------------------------------------------------------------------------//

set sourcedir  "."
set bitmapdir  "$sourcedir/cards"

#//-------------------------------------------------------------------------//
#//                                                                         //
#//  This section of code evaluates ("source") the files used in the Video  //
#//  Poker application.  No customization necessary.                        //
#//                                                                         //
#//-------------------------------------------------------------------------//

source $sourcedir/tclProp.tcl			; ## TclProp System

source $sourcedir/support.tcl
source $sourcedir/screen.tcl
source $sourcedir/manager.tcl

#//-------------------------------------------------------------------------//
#//                                                                         //
#//  A new game is begun by setting the program variable, "mode", to "bet". //
#//                                                                         //
#//-------------------------------------------------------------------------//

set mode bet
