Switched to Modrinth Version_File with Hash rather than ID and Version.

Implemented SettingsService
This commit is contained in:
2026-04-04 20:50:58 +01:00
parent 9596d15d94
commit 3298299764
6 changed files with 35 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
namespace AlayaCore.Abstractions.Interfaces.Services
{
public interface IGameLaunchServer
{
}
}

View File

@@ -0,0 +1,7 @@
namespace AlayaCore.Abstractions.Interfaces.Services
{
public interface ISettingsService
{
}
}

View File

@@ -0,0 +1,7 @@
namespace AlayaCore.Models.Configuration
{
public class LauncherOptions
{
}
}

View File

@@ -0,0 +1,7 @@
namespace AlayaCore.Services
{
public class SettingsService
{
}
}

View File

@@ -0,0 +1,7 @@
namespace AlayaCore.States
{
public class LaunchPlan
{
}
}