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

10 lines
163 B (Stored with Git LFS)
C#

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