8d892e0ad9
Revert if needed
19 lines
475 B
C#
19 lines
475 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
using Cysharp.Threading.Tasks;
|
|
using YandexQuest.Models;
|
|
|
|
public class QuestService
|
|
{
|
|
public QuestService(NetworkService networkService, ClientDataService clientDataService)
|
|
{
|
|
_networkService = networkService;
|
|
_clientDataService = clientDataService;
|
|
}
|
|
|
|
private readonly NetworkService _networkService;
|
|
private readonly ClientDataService _clientDataService;
|
|
}
|