INNER CODE UNIT · TypeScript

getSyncPoint

NSSTC/sim-ecs · src/ecs/ecs-sync-point.ts:29

export function getSyncPoint(name: string): ISyncPoint | undefined {
    return syncPoints.get(name);
}

/**
 * Remove a sync-point from the registry by name, if it exists
 * @param name
 */
export function removeSyncPoint(name: string): void {
    syncPoints.delete(name);
}

View source record →

📰 Research Paper
Loading…
⏳ Fetching content…