34 lines
744 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 TokenController
{
private IMapService mapService;
private ICharacterService characterService;
public Token LoadToken(string tokenID)
{
return null;
}
public bool SaveToken(Token tokenData)
{
return false;
}
public bool LinkTokenToCharacter(string tokenID, string characterID)
{
return false;
}
public bool UpdateTokenVisibility(string tokenID, string visibility)
{
return false;
}
}
}