package com.ad.cow.library;
import java.util.Date;
private String name;
private int level;
private float exp;
public Rating(String name,
int level,
float exp) {
this.name = name;
this.level = level;
this.exp = exp;
}
this.name = name;
}
return name;
}
this.level = level;
}
return level;
}
public void setExp(
float exp) {
this.exp = exp;
}
return exp;
}
}