UNPKG

@react-ecs/boids

Version:

<h1 align="center"> <br> <a href="https://react-ecs.ldlework.com"><img src="https://i.imgur.com/Rn6yLZs.gif" alt="React ECS" width="300"></a> <br> React ECS <br> <a href="https://react-ecs.ldlework.com">react-ecs.ldlework.com</a> </h1>

10 lines (9 loc) 238 B
import { Facet } from "@react-ecs/core"; import { Entity } from "tick-knock"; declare type NeighborMeta = { neighbors: Entity[]; }; export declare class Neighbor extends Facet<Neighbor> { meta: NeighborMeta; } export {};