18 lines
370 B
C#
18 lines
370 B
C#
using Chickensoft.Introspection;
|
|
using Chickensoft.Serialization;
|
|
using Zennysoft.Game.Abstractions;
|
|
|
|
namespace Zennysoft.Ma.Adapter;
|
|
|
|
[Meta, Id("rescued_items")]
|
|
public partial class RescuedItemDatabase
|
|
{
|
|
[Save("rescued_item_list")]
|
|
public List<InventoryItem> Items { get; init; }
|
|
|
|
public RescuedItemDatabase()
|
|
{
|
|
Items = new List<InventoryItem>();
|
|
}
|
|
}
|