15 lines
516 B
TypeScript
15 lines
516 B
TypeScript
export * from './PartSimulationRegistry';
|
|
export * from './ActiveParts';
|
|
// Side-effect imports — each of these files registers entries into the
|
|
// PartSimulationRegistry on module load. ActiveParts must run too so that
|
|
// semiconductors are marked self-managed (see the file header for why).
|
|
import './ActiveParts';
|
|
import './BasicParts';
|
|
import './ComplexParts';
|
|
import './ChipParts';
|
|
import './SensorParts';
|
|
import './LogicGateParts';
|
|
import './ProtocolParts';
|
|
import './CustomChipPart';
|
|
import './EPaperPart';
|