feat: add achievement links
This commit is contained in:
@@ -19,3 +19,21 @@ internal class PartyFinderPayload : Payload {
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
}
|
||||
|
||||
internal class AchievementPayload : Payload {
|
||||
public override PayloadType Type => (PayloadType) 0x51;
|
||||
|
||||
internal uint Id { get; }
|
||||
|
||||
internal AchievementPayload(uint id) {
|
||||
this.Id = id;
|
||||
}
|
||||
|
||||
protected override byte[] EncodeImpl() {
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
|
||||
protected override void DecodeImpl(BinaryReader reader, long endOfStream) {
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user