Added base modals and 'finished' menus

This commit is contained in:
ION606
2023-04-14 16:52:56 -04:00
parent 410473ecf8
commit ed16d4aeca
8 changed files with 67 additions and 12 deletions
+9
View File
@@ -0,0 +1,9 @@
import { Interaction } from "./interaction.js";
export class Modal extends Interaction {
constructor(intRaw, client) {
super(intRaw, client);
console.log(intRaw);
}
}