8 lines
103 B
C#
Raw Permalink Normal View History

2025-09-19 19:43:49 +05:00
namespace VContainer.Unity
{
public interface IPostTickable
{
void PostTick();
}
}