From 8045ee518ee82820836546ecff1ad05cff9c72bf Mon Sep 17 00:00:00 2001 From: VexDev <92925112+Vexb0t@users.noreply.github.com> Date: Wed, 28 Feb 2024 16:40:16 +0300 Subject: [PATCH] added minor fixes --- src/ModAPI.d.ts | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/src/ModAPI.d.ts b/src/ModAPI.d.ts index f16712d..6d9886a 100644 --- a/src/ModAPI.d.ts +++ b/src/ModAPI.d.ts @@ -74,9 +74,6 @@ interface ModAPI { * Draws a rect to screen and needs to be ran when the drawhud event is called. the color parameter needs be hex but # is replaced with 0x */ drawRect: ({left: Number, top: Number, right: Number, bottom: Number, color: Number}); - /** - * ? - */ /** * This method is used to add event listeners to the event name specified. * @param eventName @@ -160,11 +157,11 @@ interface PlatformAPI { interface emptygui { // No documentations yet. - CloseGUI() : void + CloseGUI() : void; // No documentations yet. - isInitialized() : Number + isInitialized() : Number; // No documentations yet. - DisplayGUI: ({drawdefaultbg : boolean}) + DisplayGUI: ({drawdefaultbg : boolean}); } export let ModAPI: ModAPI;