mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-24 07:05:39 +00:00
556b9fa3fe
Also add a "rating" and "timePlayed" variable to GameData. Some cleanup in GameData and FolderData. Added sorting functions for rating and timesPlayed to FolderData. Testing and UI support still tbd.
14 lines
290 B
C++
14 lines
290 B
C++
#ifndef _XMLREADER_H_
|
|
#define _XMLREADER_H_
|
|
|
|
#include <string>
|
|
class SystemData;
|
|
|
|
//Loads gamelist.xml data into a SystemData.
|
|
void parseGamelist(SystemData* system);
|
|
|
|
//Writes changes to SystemData back to a previously loaded gamelist.xml.
|
|
void updateGamelist(SystemData* system);
|
|
|
|
#endif
|