#!/usr/bin/perl
#
# This file is part of Games::Risk.
# Copyright (c) 2008 Jerome Quelin, all rights reserved.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU GPLv3+.
#
#

use strict;
use warnings;

use FindBin qw{ $Bin };
use lib "$Bin/../lib";

use Tk; # should come first
use Games::Risk;
use POE;

Games::Risk->spawn;
POE::Kernel->run;
exit;

