/
Apalchev
/
SimpleLayer
Обзор
Документация
Войти
/
Apalchev
/
SimpleLayer
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
ASPServerSignalR/DataStorage/MatchStorage.cs
31 строка
600 B
milenium856
Fix some Bugs;
18 авг 2022, 16:00
18 авг 2022, 16:00
98b1ba2
Код
Авторство
О чём код?
namespace ASPServerSignalR.DataStorage; public class MatchStorage : IMatchStorage { private readonly List<GameMatch> _gameMatches; public void CreateMatch() { throw new NotImplementedException(); } public void RemoveMatch() { throw new NotImplementedException(); } public void ConnectToMatch() { throw new NotImplementedException(); } public void DisconnectFromMatch() { throw new NotImplementedException(); } public List<GameMatch> GetMatchList() { throw new NotImplementedException(); } }