tibialand/tibia-node-crawler

View on GitHub
src/modules/character/object.js

Summary

Maintainability
A
0 mins
Test Coverage
/**
 * Character Object
 */

function Character(){
  this.character = {};
  this.achievements = [];
  this.deaths = [];
  this.account = {};
  this.characters = [];
}

module.exports = Character;