a65e71f3b1
... see pxt-arduino history starting here: acd49bb795
16 lines
450 B
TypeScript
16 lines
450 B
TypeScript
|
|
namespace pxsim.visuals {
|
|
export class GenericComponentView implements IBoardComponent<any> {
|
|
public style: string;
|
|
public element: SVGElement;
|
|
defs: SVGElement[];
|
|
init(bus: EventBus, state: any, svgEl: SVGSVGElement, gpioPins: string[], otherArgs: string[]): void {
|
|
}
|
|
moveToCoord(xy: Coord): void {
|
|
}
|
|
updateState(): void {
|
|
}
|
|
updateTheme(): void {
|
|
}
|
|
}
|
|
} |