mirror of
https://gitlab.com/MaddoScientisto/cirnogodot.git
synced 2026-06-08 21:55:54 +00:00
Dropping and picking up
This commit is contained in:
parent
488d02ef81
commit
bcd007fa1e
14 changed files with 294 additions and 62 deletions
11
Scripts/Components/FSM/IFSMStorage.cs
Normal file
11
Scripts/Components/FSM/IFSMStorage.cs
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
using System.Collections.Generic;
|
||||
using Cirno.Scripts.Resources.Loot;
|
||||
using Godot;
|
||||
|
||||
namespace Cirno.Scripts.Components.FSM;
|
||||
|
||||
public interface IFSMStorage
|
||||
{
|
||||
public IEnumerable<LootDrop> LootDrops { get; }
|
||||
public Node2D RootAsNode { get; }
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue