Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
game.jl is the single file which starts the game
  • Loading branch information
kinoroy committed Dec 2, 2016
1 parent 0e27304 commit 02f708b
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions game.jl
@@ -0,0 +1,23 @@
#=Shogi!
Authors: Kino, Amirrezera, Regan, Sam, Rulai
=#
#TO DO: Consoliate includes to top level (dparse,AIhelp , etc...)
include("start.jl")
include("move.jl")
include("move_user_move.jl")
include("move_user_drop.jl")
include("move_user_resign.jl")
include("networking.jl")
include("validate.jl")
include("validateTenjiku.jl")
include("win.jl")
include("display_gfx.jl")
using start
using move
using move_user_resign
using move_user_move
using move_user_drop
using networking
using win
#............ more modules
include("menus.jl") #Start the GUI

0 comments on commit 02f708b

Please sign in to comment.