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
10 lines
232 B
C++
10 lines
232 B
C++
#include "common.h"
|
|
#include "JsonAppSettingsService.h"
|
|
|
|
JsonAppSettingsService::JsonAppSettingsService(const char* filePath)
|
|
: _filePath(filePath)
|
|
{
|
|
if (!_serializer.Deserialize(&_appSettings, _filePath))
|
|
Save();
|
|
}
|