From 81d8a88abdf8ca132bbc9ff40120a4e039b2aaa4 Mon Sep 17 00:00:00 2001 From: PeekabooSteam Date: Sun, 3 Dec 2023 18:48:51 +0000 Subject: [PATCH] Removed old definition file --- .../plugins/_boilerplate/@types/olympus.d.ts | 30 ------------------- 1 file changed, 30 deletions(-) delete mode 100644 client/plugins/_boilerplate/@types/olympus.d.ts diff --git a/client/plugins/_boilerplate/@types/olympus.d.ts b/client/plugins/_boilerplate/@types/olympus.d.ts deleted file mode 100644 index 555976c2..00000000 --- a/client/plugins/_boilerplate/@types/olympus.d.ts +++ /dev/null @@ -1,30 +0,0 @@ -export interface OlympusPlugin { - getName: () => string; - initialize: (any) => boolean; -} - - -export class Marker {} -export class CustomMarker extends Marker {} -export class Unit extends CustomMarker {} - -export class OlympusApp { - getShortcutManager():ShortcutManager; - getUnitsManager():UnitsManager; -} - -export class ShortcutManager { - add( name:string, shortcut:Shortcut ): ShortcutManager; - getKeysBeingHeld(): string[]; - keyComboMatches( combo: string[] ): boolean; - onKeyDown( callback:CallableFunction ); - onKeyUp( callback:CallableFunction ); -} - -export class UnitsManager { - getUnits(): { [ID: number]: Unit } -} - -export declare global { - function getOlympusPlugin(): OlympusPlugin; -} \ No newline at end of file