new-logic-gate-sim/gates/gate.js

10 lines
171 B
JavaScript
Raw Normal View History

2022-11-10 22:26:41 +00:00
class Gate {
constructor(type) {
switch (type) {
case 'logic':
break;
default:
break;
}
}
}