diff --git a/client/src/aic/aicformation/Range.ts b/client/src/aic/aicformation/Range.ts deleted file mode 100644 index 08c00cd5..00000000 --- a/client/src/aic/aicformation/Range.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_Range extends AICFormation implements AICFormationInterface { - - "icon" = "range.png"; - "label" = "Range"; - "name" = "range"; - "numGroups" = 2; - "summary" = "Two contacts, one behind the other"; - "unitBreakdown" = [ "Lead group", "Trail 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