Add missing HttpGet in the interface

This commit is contained in:
Evil Factory
2026-03-14 14:45:03 -03:00
parent f802356b0a
commit cf2c8b8e0e

View File

@@ -9,6 +9,7 @@ internal interface ILuaCsNetworking : ILuaCsShim
ushort LastClientListUpdateID { get; set; }
void HttpRequest(string url, LuaCsAction callback, string data = null, string method = "POST", string contentType = "application/json", Dictionary<string, string> headers = null, string savePath = null);
void HttpPost(string url, LuaCsAction callback, string data, string contentType = "application/json", Dictionary<string, string> headers = null, string savePath = null);
void HttpGet(string url, LuaCsAction callback, Dictionary<string, string> headers = null, string savePath = null);
void Receive(string netId, LuaCsAction action);
#if SERVER