contents of zip

This commit is contained in:
transatoshi
2024-12-20 18:08:44 -08:00
parent aeb2b99db7
commit f03ed73d2b
261 changed files with 208197 additions and 0 deletions

61
scripts/output_information.js Executable file
View File

@@ -0,0 +1,61 @@
// Use strict
"use strict";
// Classes
// Output information class
class OutputInformation {
// Public
// Constructor
constructor(output, amount, identifier, switchType) {
// Set output
this.output = output;
// Set amount
this.amount = amount;
// Set identifier
this.identifier = identifier;
// Set switch type
this.switchType = switchType;
}
// Get output
getOutput() {
// Return output
return this.output;
}
// Get amount
getAmount() {
// Return amount
return this.amount;
}
// Get identifier
getIdentifier() {
// Return identifier
return this.identifier;
}
// Get switch type
getSwitchType() {
// Return switch type
return this.switchType;
}
}
// Main function
// Set global object's output information
globalThis["OutputInformation"] = OutputInformation;