Fix texture stuff
This commit is contained in:
17
Zennysoft.Game.Ma.Implementation/Item/RescuedItemDatabase.cs
Normal file
17
Zennysoft.Game.Ma.Implementation/Item/RescuedItemDatabase.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
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>();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user