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