Files
2026-04-07 04:51:37 +07:00

8 lines
103 B
C#

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