34 lines
720 B
C#
34 lines
720 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 DiceController
|
|
{
|
|
private IDiceService diceService;
|
|
private IUserPreferencesService userPreferenceService;
|
|
|
|
public DiceResult RollDice(string notation)
|
|
{
|
|
return null;
|
|
}
|
|
public List<DicePreset> GetSavedPresets()
|
|
{
|
|
return null;
|
|
}
|
|
public bool SavePreset(object preset)
|
|
{
|
|
return false;
|
|
}
|
|
public List<DiceResult> GetRollHistory(string sessionID)
|
|
{
|
|
return false;
|
|
}
|
|
}
|
|
}
|