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
12 lines
258 B
C++
12 lines
258 B
C++
#pragma once
|
|
#include "AppSettings.h"
|
|
|
|
class IAppSettingsService
|
|
{
|
|
public:
|
|
virtual ~IAppSettingsService() { }
|
|
|
|
virtual AppSettings& GetAppSettings() = 0;
|
|
virtual const AppSettings& GetAppSettings() const = 0;
|
|
virtual void Save() const = 0;
|
|
}; |