Files
whatcd-Ocelot/user.cpp
2015-01-27 17:36:18 +01:00

7 lines
182 B
C++

#include "user.h"
user::user(userid_t uid, bool leech, bool protect) : id(uid), deleted(false), leechstatus(leech), protect_ip(protect) {
stats.leeching = 0;
stats.seeding = 0;
}