17 lines
460 B
C#
17 lines
460 B
C#
using Core.Models.Eft.Common.Tables;
|
|
|
|
namespace Core.Helpers;
|
|
|
|
public class SecureContainerHelper
|
|
{
|
|
/// <summary>
|
|
/// Get a list of the item IDs (NOT tpls) inside a secure container
|
|
/// </summary>
|
|
/// <param name="items">Inventory items to look for secure container in</param>
|
|
/// <returns>List of ids</returns>
|
|
public List<string> GetSecureContainerItems(List<Item> items)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|