Skip to content

Instantly share code, notes, and snippets.

View edgarkhachatryan's full-sized avatar

Edgar Khachatryan edgarkhachatryan

View GitHub Profile
public class NetworkManager : MonoBehaviour {
private void Start() {
StartCoroutine(MakeRequests());
}
private IEnumerator MakeRequests() {
// GET
var getRequest = CreateRequest("https://jsonplaceholder.typicode.com/todos/1");
yield return getRequest.SendWebRequest();