2025-06-19 17:22:25 +00:00
|
|
|
using Godot;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
2026-05-22 12:25:02 +00:00
|
|
|
using Rokojori.Extensions;
|
2025-06-19 17:22:25 +00:00
|
|
|
namespace Rokojori
|
|
|
|
|
{
|
|
|
|
|
public interface ICustomDisposer
|
|
|
|
|
{
|
|
|
|
|
public void Dispose();
|
|
|
|
|
|
|
|
|
|
public string GetUID();
|
|
|
|
|
|
|
|
|
|
public string GetInfo();
|
|
|
|
|
}
|
|
|
|
|
}
|