Files
bluflame/aiwaz/Backup/Aiwaz.Contracts/IUpdatable.cs
2026-04-18 22:31:51 +02:00

9 lines
148 B
C#

namespace Aiwaz.Contracts
{
public interface IUpdatable
{
void Update(bool argForceUpdate);
bool WantsUpdate { get; }
};
}