mirror of
https://github.com/MathMan05/Fermi.git
synced 2026-05-25 14:14:17 +00:00
8 lines
144 B
JavaScript
8 lines
144 B
JavaScript
class role{
|
|
constructor(JSON, owner){
|
|
for(const thing of Object.keys(JSON)){
|
|
this[thing]=JSON[thing];
|
|
}
|
|
}
|
|
}
|