fix: Add DeleteAllCookies to IMinecraftComHandler

Add DeleteAllCookies to IMinecraftComHandler
This commit is contained in:
Anon 2026-08-23 17:22:36 +02:00 committed by GitHub
commit 6a5b28b0bd
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);