From ca816835f039fde1afea44457217de3cd97fc9d7 Mon Sep 17 00:00:00 2001 From: bluesaxman Date: Tue, 20 Dec 2022 10:12:21 -0700 Subject: [PATCH] Changed nameing scheme for classes of bluepixle_ui.js --- libs/bluepixle_ui.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libs/bluepixle_ui.js b/libs/bluepixle_ui.js index a3fbbbd..4fedac4 100644 --- a/libs/bluepixle_ui.js +++ b/libs/bluepixle_ui.js @@ -5,7 +5,7 @@ const RIGHT_KEY = "KeyD"; const ACT_KEY = "KeyE"; const MENU_KEY = "KeyQ"; -class menu { +class bpu_menu { constructor (frameBufferRef, dimentions, closeable, options, callbackArray) { this.parentBuffer = frameBufferRef; this.closeable = "boolean" == typeof closeable ? closeable : true; @@ -63,7 +63,7 @@ class menu { } } -class dialogBox { +class bpu_dialogBox { constructor (parentBufferRef) { this.parentBufferRef = parentBufferRef; this.messageLayer = new container(new vector([0, parentBufferRef.height - 100]), new vector([parentBufferRef.width, 100]));