ProjectDDD/Packages/com.arongranberg.astar/Core/ECS/IRuntimeBaker.cs
2025-07-08 19:46:31 +09:00

10 lines
163 B
C#

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