You've already forked pico-launcher
mirror of
https://github.com/LNH-team/pico-launcher.git
synced 2026-01-09 16:28:48 -08:00
9 lines
233 B
C++
9 lines
233 B
C++
#pragma once
|
|
class AppSettings;
|
|
|
|
class JsonAppSettingsSerializer
|
|
{
|
|
public:
|
|
void Serialize(const AppSettings* appSettings, const char* filePath) const;
|
|
bool Deserialize(AppSettings* appSettings, const char* filePath) const;
|
|
}; |