Skip to content
Snippets Groups Projects
Commit 16017ef0 authored by Boris Cazic's avatar Boris Cazic
Browse files

Merge branch 'evangoet/features/AddInterfaceForIHMGAME' into 'data'

[ADD] interface Game calls Data

See merge request !56
parents 311e5e5c 5ae0aadd
No related branches found
No related tags found
1 merge request!56[ADD] interface Game calls Data
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Shared.data;
namespace Shared.interfaces
{
public interface IGameToData
{
void sendMessage(ChatMessage message) ;
void stopGame();
void saveGame();
void leaveGame();
void playRound(Action action);
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment