Beispiel #1
0
        public static ConquerProficiency Create(uint _owner, ushort _id, ushort _level, uint _exp = 0)
        {
            var db = new DbProficiency()
            {
                Owner         = _owner,
                ID            = _id,
                Level         = _level,
                Experience    = _exp,
                PreviousLevel = 0
            };

            return(new ConquerProficiency(db));
        }
Beispiel #2
0
 public ConquerProficiency(DbProficiency _prof)
 {
     database = _prof;
 }