#include "Unit.h"

unsigned int Unit::num_of_units = 0;

Unit::Unit() {
  this->id = num_of_units;
  num_of_units++;
}

void Unit::set_id(unsigned int id) { this->id = id; }

unsigned int Unit::get_id() { return this->id; }
