using System.Collections.Generic; using Cirno.Scripts.Resources.Loot; using Godot; namespace Cirno.Scripts.Components.FSM; public interface IFSMStorage { public IEnumerable LootDrops { get; } public Node RootAsNode { get; } }