0
0
mirror of https://github.com/sp-tarkov/modules.git synced 2025-02-13 09:50:43 -05:00
Dev ab2a9bbb40 Reworked ScavLateStart patch
Removed majority of logic from client code in favour of having it in server
Targets different method, method_43
Processes changes provided by server
2023-12-03 11:16:18 +00:00

17 lines
340 B
C#

using EFT;
namespace Aki.SinglePlayer.Patches.ScavMode
{
public class RaidTimeRequest
{
public RaidTimeRequest(ESideType side, string location)
{
Side = side;
Location = location;
}
public ESideType Side { get; set; }
public string Location { get; set; }
}
}