mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-23 14:45:38 +00:00
67aa6b3dbd
Includes lots of conversions from tabs to spaces. Only cosmetic code changes in this commit.
20 lines
387 B
C++
20 lines
387 B
C++
//
|
|
// Gamelist.h
|
|
//
|
|
// Parses and updates the gamelist.xml files.
|
|
//
|
|
|
|
#pragma once
|
|
#ifndef ES_APP_GAME_LIST_H
|
|
#define ES_APP_GAME_LIST_H
|
|
|
|
class SystemData;
|
|
|
|
// Loads gamelist.xml data into a SystemData.
|
|
void parseGamelist(SystemData* system);
|
|
|
|
// Writes currently loaded metadata for a SystemData to gamelist.xml.
|
|
void updateGamelist(SystemData* system);
|
|
|
|
#endif // ES_APP_GAME_LIST_H
|