mirror of
https://github.com/WhatCD/Ocelot.git
synced 2026-01-16 19:05:03 -05:00
7 lines
182 B
C++
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;
|
|
}
|