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

10 lines
163 B
C#
Raw Normal View History

2024-06-03 18:26:03 +00:00
#if MODULE_ENTITIES
using Unity.Entities;
namespace Pathfinding.Util {
interface IRuntimeBaker {
void OnCreatedEntity(World world, Entity entity);
}
}
#endif