30 lines
633 B
C#
30 lines
633 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 EmoteController
|
|
{
|
|
private IChatService chatService;
|
|
private IEmoteRepository emoteRepository;
|
|
|
|
public List<Emote> GetAvailableEmotes()
|
|
{
|
|
return null;
|
|
}
|
|
public bool SendEmote(string sessionID, string emoteID, string target)
|
|
{
|
|
return false;
|
|
}
|
|
public Emote CreateCustomEmote(object emoteData)
|
|
{
|
|
return null;
|
|
}
|
|
}
|
|
}
|