TraderAssortService Complete (#48)

* TraderAssortService Complete

* Add debugging ability to VS (puke) users
This commit is contained in:
CWX
2025-01-13 10:10:07 +00:00
committed by GitHub
parent bad41cca6c
commit 3f46db3cd6
2 changed files with 12 additions and 2 deletions
+4 -2
View File
@@ -6,9 +6,11 @@ namespace Core.Services;
[Injectable(InjectionType.Singleton)]
public class TraderAssortService
{
private Dictionary<string, TraderAssort> _pristineTraderAssorts = new();
public TraderAssort GetPristineTraderAssort(string traderId)
{
throw new NotImplementedException();
return _pristineTraderAssorts[traderId];
}
/// <summary>
@@ -18,6 +20,6 @@ public class TraderAssortService
/// <param name="assort">Assorts to store</param>
public void SetPristineTraderAssort(string traderId, TraderAssort assort)
{
throw new NotImplementedException();
_pristineTraderAssorts[traderId] = assort;
}
}
+8
View File
@@ -0,0 +1,8 @@
{
"profiles": {
"Spt Server Debug": {
"commandName": "Project",
"hotReloadEnabled": false
}
}
}