Revision 1 (by (no author), 2006/09/28 22:53:53) Initial import
collectgarbage()

players = {
	Player:new(),
	Player:new()
}

board:SetPlayers(players)

-- Deal the cards
function deal(player)
	hand = {
		board:GetRandomCard(1),
	}
	player:SetHand(hand)
end

deal(players[1])
deal(players[2])