mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-26 16:15:39 +00:00
bc72990f39
Half of the ES code has been missing for 5 days because I am incompetent
15 lines
416 B
C++
15 lines
416 B
C++
#pragma once
|
|
|
|
#include <vector>
|
|
#include "FileData.h"
|
|
|
|
namespace FileSorts
|
|
{
|
|
bool compareFileName(const FileData* file1, const FileData* file2);
|
|
bool compareRating(const FileData* file1, const FileData* file2);
|
|
bool compareTimesPlayed(const FileData* file1, const FileData* fil2);
|
|
bool compareLastPlayed(const FileData* file1, const FileData* file2);
|
|
|
|
extern const std::vector<FileData::SortType> SortTypes;
|
|
};
|