Add serverside GUI utils

This commit is contained in:
Vortrex
2021-01-05 01:23:46 -06:00
parent 87e91872ab
commit 24d7441f0d

41
scripts/server/gui.js Normal file
View File

@@ -0,0 +1,41 @@
// ===========================================================================
// Asshat-Gaming Roleplay
// https://github.com/VortrexFTW/gtac_asshat_rp
// Copyright (c) 2020 Asshat-Gaming (https://asshatgaming.com)
// ---------------------------------------------------------------------------
// FILE: gui.js
// DESC: Provides GUI functions and usage
// TYPE: Server (JavaScript)
// ===========================================================================
// UNFINISHED. NOT READY TO USE
function showPlayerLoginGUI(client, errorMessage = "") {
}
// ---------------------------------------------------------------------------
function showPlayerRegistrationGUI(client, errorMessage = "") {
}
// ---------------------------------------------------------------------------
function showPlayerNewCharacterGUI(client) {
}
// ---------------------------------------------------------------------------
function showPlayerPromptGUI(client, promptMessage, answerYesText, answerNoText) {
}
// ---------------------------------------------------------------------------
function showPlayerPromptGUI(client) {
}
// ---------------------------------------------------------------------------