mirror of
https://github.com/sp-tarkov/modules.git
synced 2025-02-13 09:10:44 -05:00
Client implementation of my `TraderServiceFix` mod into the SPT code base. Details on server PR, also is required to be merged with the accompanying server PR. Co-authored-by: Cj <161484149+CJ-SPT@users.noreply.github.com> Reviewed-on: SPT/Modules#165 Co-authored-by: Cj <cj@noreply.dev.sp-tarkov.com> Co-committed-by: Cj <cj@noreply.dev.sp-tarkov.com>
8 lines
164 B
C#
8 lines
164 B
C#
using System.Collections.Generic;
|
|
|
|
namespace SPT.SinglePlayer.Models.MainMenu;
|
|
|
|
public class ModdedTraders
|
|
{
|
|
public List<string> clothingService { get; set; }
|
|
} |