Files
AR-Menu/Library/PackageCache/com.needle.engine-exporter@8c046140a1d9/Common/Runtime/Interfaces/IBuildCallbackComponent.cs
2025-11-30 08:35:03 +02:00

11 lines
195 B
C#

namespace Needle.Engine
{
/// <summary>
/// called by Builder after everything has been exported
/// </summary>
public interface IBuildCallbackComponent
{
void OnBuildCompleted();
}
}