Skip to content

Commit

Permalink
added minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
0xerorn authored Feb 28, 2024
1 parent 97e9ec9 commit 8045ee5
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions src/ModAPI.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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;

Expand Down

0 comments on commit 8045ee5

Please sign in to comment.