function Unit()
{
  this.example = "unknown";
  this.name = this.constructor.name;
  
  this.render = function()
  {
    return "[MISSING]";
  }
}