feat: add achievement links

This commit is contained in:
Anna
2022-02-03 19:19:27 -05:00
parent 077053f4e1
commit d0c3cbc2ab
4 changed files with 41 additions and 0 deletions
+18
View File
@@ -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();
}
}