mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2026-04-28 03:47:03 +02:00
IPVGO: Add support for highlighting nodes and adding small text (#1996)
This commit is contained in:
committed by
GitHub
parent
5d486e3914
commit
f6e7ef082c
@@ -55,6 +55,7 @@ export type BoardState = {
|
||||
cheatCount: number;
|
||||
cheatCountForWhite: number;
|
||||
komiOverride: number | null;
|
||||
highlightedPoints: (PointHighlight | null)[][];
|
||||
};
|
||||
|
||||
export type PointState = {
|
||||
@@ -109,3 +110,8 @@ export type SimpleOpponentStats = {
|
||||
bonusPercent: number;
|
||||
bonusDescription: string;
|
||||
};
|
||||
|
||||
export type PointHighlight = {
|
||||
color: string;
|
||||
text: string;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user