14 lines
262 B
C#
14 lines
262 B
C#
using Godot;
|
|
using Godot.Collections;
|
|
using Zennysoft.Ma.Adapter.Entity;
|
|
|
|
namespace Zennysoft.Game.Ma;
|
|
|
|
[GlobalClass]
|
|
public partial class EnemyLootTable : Resource, IEnemyLootTable
|
|
{
|
|
[Export]
|
|
public Array<InventoryItemStats> Items { get; set; } = [];
|
|
}
|
|
|