7 lines
144 B
JavaScript
7 lines
144 B
JavaScript
class role{
|
|
constructor(JSON, owner){
|
|
for(const thing of Object.keys(JSON)){
|
|
this[thing]=JSON[thing];
|
|
}
|
|
}
|
|
}
|