rock-mod
Version:
Rock-Mod is a powerful framework designed for creating and managing mods for Grand Theft Auto (GTA) games.
18 lines (17 loc) • 522 B
JavaScript
/// <reference types="@classic-mp/types/client" />
export class CCMPGuiManager {
constructor() {
this._warnedTakeScreenshot = false;
}
takeScreenshot(name, type, quality, compressionQuality) {
void name;
void type;
void quality;
void compressionQuality;
if (this._warnedTakeScreenshot) {
return;
}
this._warnedTakeScreenshot = true;
console.warn("[CCMPGuiManager] takeScreenshot is not available in CCMP client JS.");
}
}