jank-client-fork/webpage/role.js
2024-05-26 20:11:56 -05:00

7 lines
144 B
JavaScript

class role{
constructor(JSON, owner){
for(const thing of Object.keys(JSON)){
this[thing]=JSON[thing];
}
}
}