mise en place de la structure de base du plateau (#40)
All checks were successful
Merging on main / Build & Test (push) Successful in 1m10s

Co-authored-by: mcmuzzle <vezuvan@hotmail.com>
Reviewed-on: #40
This commit was merged in pull request #40.
This commit is contained in:
2026-02-23 10:21:01 +00:00
parent eea8bc69e1
commit 5ef3be8cc8
28 changed files with 975 additions and 11 deletions

View File

@@ -0,0 +1,13 @@
using LittleTown.Core;
namespace LittleTown.Blazor.Client.Services
{
public interface IMatchService
{
/// <summary>
/// Temporaire, recupere l'instance d'un match par défaut
/// </summary>
/// <returns></returns>
Match GetMatch();
}
}