This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package JWaveToCCITT; | |
import javax.sound.sampled.*; | |
import java.io.File; | |
import java.io.IOException; | |
import java.util.ArrayList; | |
public class ConvertFile { | |
String filePath; | |
String fileDest; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
DECK OF CARDS | |
DAVE CRANDELL 2024 | |
52-CARD DECK DEFINED AS DICT | |
IMAGES FROM https://tekeye.uk/playing_cards/svg-playing-cards | |
""" | |
class CardSuit: | |
SPADES = 'Spades' |