rock-mod
Version:
Rock-Mod is a powerful framework designed for creating and managing mods for Grand Theft Auto (GTA) games.
21 lines (20 loc) • 542 B
JavaScript
export class RageConsoleManager {
logInfo(message, save, saveAsync) {
mp.console.logInfo(message, save, saveAsync);
}
logWarning(message, save, saveAsync) {
mp.console.logWarning(message, save, saveAsync);
}
logError(message, save, saveAsync) {
mp.console.logError(message, save, saveAsync);
}
logFatal(message, save, saveAsync) {
mp.console.logFatal(message, save, saveAsync);
}
clear() {
mp.console.clear();
}
reset() {
mp.console.reset();
}
}