Package playlists is the playlist manager of Ludo. In Ludo, playlists are
CSV files containing the ROM path, name, and CRC32 checksum.
Playlists are kept into memory for fast lookup of entries and deduplication.
type Game struct {
Path string// Absolute path of the game on the filesystem Name string// Human readable name of the game, comes from the RDB CRC32 uint32// Checksum of the game, used for deduplication}