From d9389d29abedd3a2aeae147c231da09800b11fe9 Mon Sep 17 00:00:00 2001 From: Pax1601 Date: Thu, 16 Mar 2023 15:57:06 +0100 Subject: [PATCH] Delete AICFormationDescriptorSection.ts --- .../src/aic/AICFormationDescriptorSection.ts | 40 ------------------- 1 file changed, 40 deletions(-) delete mode 100644 client/src/aic/AICFormationDescriptorSection.ts diff --git a/client/src/aic/AICFormationDescriptorSection.ts b/client/src/aic/AICFormationDescriptorSection.ts deleted file mode 100644 index bcd2f3c3..00000000 --- a/client/src/aic/AICFormationDescriptorSection.ts +++ /dev/null @@ -1,40 +0,0 @@ -import { AICFormation } from "./aicformation"; -import { AICFormationContextDataInterface } from "./aicformationdescriptor"; -import { AICFormationDescriptorPhrase } from "./aicformationdescriptorphrase"; - -export interface AICFormationDescriptorSectionInterface { - "generate" : CallableFunction, - "label" : string, - "name" : string, - "omitSection" : boolean -} - -export abstract class AICFormationDescriptorSection { - - #phrases : AICFormationDescriptorPhrase[] = []; - label = ""; - name = ""; - omitSection = false; - - constructor() { - } - - - addPhrase( phrase:AICFormationDescriptorPhrase ) { - this.#phrases.push( phrase ); - } - - - generate( formation:AICFormation, contextData: AICFormationContextDataInterface ) { - - return this; - - } - - - getPhrases() { - return this.#phrases; - } - - -} \ No newline at end of file