10 lines
184 B
C#
10 lines
184 B
C#
using Godot;
|
|
|
|
namespace Milimoe.GodotGame
|
|
{
|
|
public interface ISaveSelectionEvent
|
|
{
|
|
public void OnSaveSelectionClosed(bool selected, int index, bool isSave);
|
|
}
|
|
}
|