43 lines
902 B
C#
43 lines
902 B
C#
using Models;
|
|
using Services;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Controller
|
|
{
|
|
public class MapController
|
|
{
|
|
private IMapService mapService;
|
|
private TokenController tokenController;
|
|
private List<Action> uiUpdateCallbacks;
|
|
|
|
public Map LoadMap(string mapID)
|
|
{
|
|
return null;
|
|
}
|
|
public bool SaveMap(Map mapData)
|
|
{
|
|
return false;
|
|
}
|
|
public Token AddToken(object tokenData)
|
|
{
|
|
return null;
|
|
}
|
|
public bool MoveToken(string tokenID, object position)
|
|
{
|
|
return false;
|
|
}
|
|
public bool DeleteToken(string tokenID)
|
|
{
|
|
return false;
|
|
}
|
|
public void SubscribeToUpdates(Action callback)
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|