8 lines
103 B
C#

namespace VContainer.Unity
{
public interface ILateTickable
{
void LateTick();
}
}