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