1 2 3 4 5 6 7 8 9
#if MODULE_ENTITIES using Unity.Entities; namespace Pathfinding.Util { interface IRuntimeBaker { void OnCreatedEntity(World world, Entity entity); } } #endif