init stuff

This commit is contained in:
MathMan05 2024-05-26 20:11:56 -05:00
parent abdd9579ff
commit 54448f3a4a
18 changed files with 3199 additions and 0 deletions

7
webpage/role.js Normal file
View file

@ -0,0 +1,7 @@
class role{
constructor(JSON, owner){
for(const thing of Object.keys(JSON)){
this[thing]=JSON[thing];
}
}
}