2026-06-10 10:12:24 +01:00

12 lines
274 B
C#

namespace Intrepid.Utilities.Updatable
{
public interface IUpdatable
{
string Id { get; }
int Order => int.MaxValue;
void UpdateFromUpdatable();
void LateUpdateFromUpdatable();
void FixedUpdateFromUpdatable();
}
}