JinChanChan/Packages/com.arongranberg.astar/Core/ECS/IRuntimeBaker.cs

10 lines
163 B
C#
Raw Permalink Normal View History

2025-02-26 16:54:54 +08:00
#if MODULE_ENTITIES
using Unity.Entities;
namespace Pathfinding.Util {
interface IRuntimeBaker {
void OnCreatedEntity(World world, Entity entity);
}
}
#endif