summaryrefslogtreecommitdiff
path: root/Other/AstarPathfindingDemo/Packages/com.arongranberg.astar/Core/ECS/IRuntimeBaker.cs
blob: 077ba9e0c6b262e4bf99ea3d47ba1746162da64d (plain)
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