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

Add NOT gate

This commit is contained in:
tobspr
2020-08-13 19:33:35 +02:00
parent 52b4d4d742
commit 49da768b73
17 changed files with 970 additions and 829 deletions

View File

@@ -3,6 +3,7 @@ import { Component } from "../component";
/** @enum {string} */
export const enumLogicGateType = {
and: "and",
not: "not",
};
export class LogicGateComponent extends Component {