浏览代码

Change SchematicsSymbol to SchematicsGear

Other symbols aren't relevant for the challenge, so I'll just rename
this, and add an extra property for it.
ApisNecros 1 年之前
父节点
当前提交
b7e777688a
共有 1 个文件被更改,包括 6 次插入2 次删除
  1. 6 2
      3/3_common.ts

+ 6 - 2
3/3_common.ts

@@ -200,11 +200,15 @@ export type EnginePart = {
 };
 
 /**
- * A symbol on the schematics map
+ * A gear on the schematics map
+ * 
+ * A gear is any `*` symbol from the schematics map that borders
+ * exactly two engine part numbers.
  */
-export type SchematicsSymbol = {
+export type SchematicsGear = {
     Symbol: string,
     Coordinates: Vector2,
+    PartNumbers: number[]
 };
 
 /**