Add Patch Method to ISteamHTTP include (#22)

* Patch Method

Merely wanted to add PATCH to the httpmethod enum but I can't create an issue.
https://partner.steamgames.com/doc/api/ISteamHTTP#EHTTPMethod

* Update SteamWorks.inc

shriek
This commit is contained in:
EXE KL
2018-07-09 09:24:18 -07:00
committed by Kyle Sanderson
parent 6c36535c98
commit c97fa05521
+1
View File
@@ -130,6 +130,7 @@ enum EHTTPMethod
k_EHTTPMethodPUT,
k_EHTTPMethodDELETE,
k_EHTTPMethodOPTIONS,
k_EHTTPMethodPATCH,
// The remaining HTTP methods are not yet supported, per rfc2616 section 5.1.1 only GET and HEAD are required for
// a compliant general purpose server. We'll likely add more as we find uses for them.