Ok I have my code that allows the two dice to roll, however I have run into a slump, which is I am trying to output the dice as the picture and the dice as the numeric value. However everytime I change this to show the number it will break the physical dice. Heres My Code:
#include <time.h>
#include <iostream>
#include <cstdlib>
using namespace std;
int dice1, dice2 = 0;
void RollDice(); // The Void Program That Rolls The Dice
int main()
{
srand(time(NULL));
int input = 1;
do
{
if (input == 1)
{
system ("CLS");
RollDice(); // Function That Does Everything For The Code
cout << "\n 1. Roll \n 2. Quit\n\n Your Choice Sir : ";
}