Skip to content
Snippets Groups Projects
Commit 5ae0aadd authored by Eliot Van Goethem's avatar Eliot Van Goethem
Browse files

[ADD] interface Game calls Data

parent 1c86b411
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