feat: add specific threat types

This commit is contained in:
thetek 2024-05-13 15:05:25 +02:00
parent 6c695b1f03
commit f1464f7712

View File

@ -60,7 +60,7 @@ export type DiscreteRange<From extends number, To extends number> = number & tag
export type Target = { export type Target = {
location: Point, location: Point,
threatLevel: Range<0, 1>, threatLevel: Range<0, 1>,
type: string, type: "airDefense" | "artillery" | "radar",
}; };
export type Point = { export type Point = {