mirror of
https://github.com/sp-tarkov/modules.git
synced 2025-02-13 09:50:43 -05:00
Add a patch to track when we place items at quest locations for use in insurance. Reviewed-on: SPT/Modules#131 Co-authored-by: Kaeno <kaeno@noreply.dev.sp-tarkov.com> Co-committed-by: Kaeno <kaeno@noreply.dev.sp-tarkov.com>
12 lines
284 B
C#
12 lines
284 B
C#
namespace SPT.SinglePlayer.Models.RaidFix
|
|
{
|
|
public class SPTInsuredItemClass
|
|
{
|
|
public string id;
|
|
public float? durability = null;
|
|
public float? maxDurability = null;
|
|
public byte? hits = null;
|
|
public bool usedInQuest = false;
|
|
}
|
|
}
|