From 9517946691cb4139f10163e30265df652d6fb233 Mon Sep 17 00:00:00 2001 From: Pax1601 Date: Thu, 16 Mar 2023 15:55:32 +0100 Subject: [PATCH] Delete Azimuth.ts --- client/src/aic/aicformation/Azimuth.ts | 38 -------------------------- 1 file changed, 38 deletions(-) delete mode 100644 client/src/aic/aicformation/Azimuth.ts diff --git a/client/src/aic/aicformation/Azimuth.ts b/client/src/aic/aicformation/Azimuth.ts deleted file mode 100644 index 7db676ae..00000000 --- a/client/src/aic/aicformation/Azimuth.ts +++ /dev/null @@ -1,38 +0,0 @@ -import { AICFormation, AICFormationInterface } from "../aicformation"; -import { AICFormationContextDataInterface } from "../aicformationdescriptor"; -import { AICFormationDescriptorSection } from "../aicformationdescriptorsection"; -import { AICFormationDescriptorComponent } from "../aicformationdescriptorcomponent"; -import { AICFormationDescriptorPhrase } from "../aicformationdescriptorphrase"; - -export class AICFormation_Azimuth extends AICFormation implements AICFormationInterface { - - "icon" = "azimuth.png"; - "label" = "Azimuth"; - "name" = "azimuth"; - "numGroups" = 2; - "summary" = "Two contacts, side-by-side in a line perpedicular to the perspective."; - "unitBreakdown" = [ " group", " group" ]; - - constructor() { - - super(); - - } - - addToDescriptorPhrase( section: AICFormationDescriptorSection, phrase: AICFormationDescriptorPhrase, contextData: AICFormationContextDataInterface ) { - - switch ( section.name ) { - - case "formation": - - phrase.addComponent( new AICFormationDescriptorComponent( "" ) ); - phrase.addComponent( new AICFormationDescriptorComponent( "track " ) ); - - } - - return phrase; - - - } - -} \ No newline at end of file