mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-23 22:55:39 +00:00
80740a2bd0
See changelog.txt (September 7) for a list of everything.
11 lines
175 B
C++
11 lines
175 B
C++
#ifndef _XMLREADER_H_
|
|
#define _XMLREADER_H_
|
|
|
|
#include <string>
|
|
class SystemData;
|
|
|
|
//Loads gamelist.xml data into a SystemData.
|
|
void parseGamelist(SystemData* system);
|
|
|
|
#endif
|