2
0
mirror of https://github.com/9ParsonsB/Pulsar.git synced 2025-04-05 17:39:39 -04:00
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();
}
}