From 319815dff207b916669f214e3ae5ed3d408e17bd Mon Sep 17 00:00:00 2001 From: Pax1601 Date: Thu, 16 Mar 2023 15:57:03 +0100 Subject: [PATCH] Delete AICFormationDescriptorPhrase.ts --- .../src/aic/AICFormationDescriptorPhrase.ts | 40 ------------------- 1 file changed, 40 deletions(-) delete mode 100644 client/src/aic/AICFormationDescriptorPhrase.ts diff --git a/client/src/aic/AICFormationDescriptorPhrase.ts b/client/src/aic/AICFormationDescriptorPhrase.ts deleted file mode 100644 index b2a519a0..00000000 --- a/client/src/aic/AICFormationDescriptorPhrase.ts +++ /dev/null @@ -1,40 +0,0 @@ -import { AICFormation } from "./aicformation"; -import { AICFormationContextDataInterface } from "./aicformationdescriptor"; -import { AICFormationDescriptorComponent } from "./aicformationdescriptorcomponent"; - -export interface AICFormationDescriptorPhraseInterface { - "generate" : CallableFunction, - "label" : string, - "name" : string -} - -export class AICFormationDescriptorPhrase { - - #components : AICFormationDescriptorComponent[] = []; - label = ""; - name = ""; - - constructor() { - } - - - addComponent( component:AICFormationDescriptorComponent ) { - this.#components.push( component ); - return this; - } - - - - getComponents() { - return this.#components; - } - - - generate( formation:AICFormation, contextData: AICFormationContextDataInterface ) { - - return this; - - } - - -} \ No newline at end of file