1
0
mirror of https://github.com/tobspr/shapez.io.git synced 2026-03-02 03:39:21 +00:00

Add OR gate and different colors of wire based on the value

This commit is contained in:
tobspr
2020-08-13 20:01:54 +02:00
parent 49da768b73
commit 984bea1921
35 changed files with 1592 additions and 814 deletions

View File

@@ -4,6 +4,8 @@ import { Component } from "../component";
export const enumLogicGateType = {
and: "and",
not: "not",
xor: "xor",
or: "or",
};
export class LogicGateComponent extends Component {