#include "person.h"

Person::Person(int age, int id){
	this->age = age;
	this->id = id;
}

void
Person::walk(int distance, float angle){
}