mirror of
https://github.com/godotengine/godot-vscode-plugin.git
synced 2026-01-04 10:09:58 +03:00
14 lines
435 B
TypeScript
14 lines
435 B
TypeScript
'use strict';
|
|
import { workspace, Disposable, ExtensionContext } from 'vscode';
|
|
import WindowWatch from "./window_watcher";
|
|
import ToolManager from './tool_manager';
|
|
|
|
let tool: ToolManager = null;
|
|
|
|
export function activate(context: ExtensionContext) {
|
|
tool = new ToolManager(context);
|
|
context.subscriptions.push(tool);
|
|
context.subscriptions.push(new WindowWatch());
|
|
console.log("[GodotTools]: Extension Activated");
|
|
}
|