Files
BABA_YAGA/Packages/com.arongranberg.astar/Core/ECS/IRuntimeBaker.cs
2026-06-11 22:49:50 +07:00

10 lines
163 B
C#

#if MODULE_ENTITIES
using Unity.Entities;
namespace Pathfinding.Util {
interface IRuntimeBaker {
void OnCreatedEntity(World world, Entity entity);
}
}
#endif