From 769e5772fbf6df3680eaf3ad55bd35b93276356d Mon Sep 17 00:00:00 2001 From: Pax1601 Date: Thu, 16 Mar 2023 15:55:40 +0100 Subject: [PATCH] Delete Range.ts --- client/src/aic/aicformation/Range.ts | 38 ---------------------------- 1 file changed, 38 deletions(-) delete mode 100644 client/src/aic/aicformation/Range.ts 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