2
0
mirror of https://github.com/9ParsonsB/Pulsar.git synced 2025-12-15 12:24:57 +01:00
Files
pulsar/Pulsar/Utils/SettingsManager.cs
2024-04-13 18:10:46 +10:00

14 lines
264 B
C#

namespace Pulsar.Utils;
internal static class SettingsManager
{
internal static void Save()
{
throw new NotImplementedException();
}
internal static void Load()
{
throw new NotImplementedException();
}
}