File indexing completed on 2024-04-21 04:02:29

0001 /***************************************************************************
0002  *   Copyright (C) 2005 by Albert Astals Cid <aacid@kde.org>               *
0003  *                                                                         *
0004  *   This program is free software; you can redistribute it and/or modify  *
0005  *   it under the terms of the GNU General Public License as published by  *
0006  *   the Free Software Foundation; either version 2 of the License, or     *
0007  *   (at your option) any later version.                                   *
0008  ***************************************************************************/
0009 
0010 #ifndef COMPUTER_H
0011 #define COMPUTER_H
0012 
0013 class player;
0014 
0015 void setComputerDiceValue(int dice, int value);
0016 bool getComputerDiceSelected(int dice);
0017 
0018 void ComputerRolling(const player &p, int NumberOfRolls);
0019 int ComputerScoring(const player &p);
0020 bool computerDiceSelected();
0021 
0022 #endif