Add DeleteAllCookies to IMinecraftComHandler

Add missing interface method declaration to fix CS1061.
This commit is contained in:
xiaoze_qwq_ 2026-08-21 12:41:55 +08:00 committed by GitHub
parent 133c340381
commit 39de406e9d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -48,6 +48,7 @@ namespace MinecraftClient.Protocol
void GetCookie(string key, out byte[]? data);
void SetCookie(string key, byte[] data);
void DeleteCookie(string key);
void DeleteAllCookies();
void Transfer(string newHost, int newPort);