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