Can anyone teel me the correct Black Jack Card, Deck, adn Table coding? I can't find how to fix the mistakes anywhere else
public class deck
{
// define instance fields
card.Colour colour;
int spaces, clubs, spades, hearts;
// code block called when a new deck is created
public deck(card.Colour colour, int spaces, int clubs, int hearts, int diamonds)
{
this colour = colour;
// etc.
}
}