mirror of
https://github.com/sp-tarkov/modules.git
synced 2025-02-13 09:50:43 -05:00
![Dev](/assets/img/avatar_default.png)
Removed majority of logic from client code in favour of having it in server Targets different method, method_43 Processes changes provided by server
17 lines
340 B
C#
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; }
|
|
}
|
|
}
|